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钩子函数
本文标题:页面中定义一个定时器,在哪个阶段清除?
本文链接:https://www.haomeiwen.com/subject/tpwxphtx.html
网友评论