页面中定义一个定时器,在哪个阶段清除?
2020-04-02 本文已影响0人
沫tiny
mounted(){
const timer = setInterval(()=>{
console.log(1)
},100)
this.$once('hook:beforeDestroy',()=>{
clearInterval(timer)
})
}
beforeDestroy钩子函数
mounted(){
const timer = setInterval(()=>{
console.log(1)
},100)
this.$once('hook:beforeDestroy',()=>{
clearInterval(timer)
})
}
beforeDestroy钩子函数