通过 $on 或 $once 监听页面生命周期销毁来去掉定时器,
2020-08-05 本文已影响0人
阿克兰
export default {
mounted() {
this.creatInterval('hello')
this.creatInterval('world')
},
creatInterval(msg) {
let timer = setInterval(() => {
console.log(msg)
}, 1000)
this.$once('hook:beforeDestroy', function() {
clearInterval(timer)
})
}
}