This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
nezha-nezha-fronted/nezha-fronted/src/components/common/mixin/editRigthBox.js

18 lines
277 B
JavaScript
Raw Normal View History

2021-07-05 14:43:47 +08:00
export default {
data () {
return {
isEdit: false
}
},
mounted () {
if( this.isEdit ) {
window.onbeforeunload = () => {
return window.confirm("确认操作吗?")
}
}
},
destroyed () {
window.onbeforeunload = null
}
}