export default {
mounted() {
// 操作...
// 监听
window.addEventListener('resize', this.handle)
// 通过hook监听生命周期并销毁事件
this.$once('hook:beforeDestroy', () => {
window.removeEventListener('resize', this.handle)
})
},
methods: {
handle() {
// 操作
}
}
}
在生命周期完成监听和销毁
最新推荐文章于 2024-07-19 12:00:10 发布