页面中定义一个定时器,在哪个阶段清除?

mounted(){
  const timer = setInterval(()=>{
     console.log(1)
  },100)
  this.$once('hook:beforeDestroy',()=>{
     clearInterval(timer)
  })
}
beforeDestroy钩子函数

你可能感兴趣的:(页面中定义一个定时器,在哪个阶段清除?)