请问老师,有没有好的办法可以监控一个页面的关闭,我之前尝试了监控vuex的变化来确定页面是关闭,但是没有成功,主页面中:
computed: {
isEdit () {
return this.$store.state.editing
}
},
watch: {
isEdit (newVal, oldVal) {
console.log('editing is change')
}
},
被监听页面中:
created () {
this.$store.commit('SET_EDITING', true)
},
destroyed () {
this.$store.commit('SET_EDITING', true)
}
请问这样是否可行?是否有更好的思路?
基于Element的中后台课程,一套中小型企业通用的后台管理系统
了解课程