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

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

作者: 沫tiny | 来源:发表于2020-04-02 16:24 被阅读0次
    mounted(){
      const timer = setInterval(()=>{
         console.log(1)
      },100)
      this.$once('hook:beforeDestroy',()=>{
         clearInterval(timer)
      })
    }
    beforeDestroy钩子函数
    

    相关文章

      网友评论

          本文标题:页面中定义一个定时器,在哪个阶段清除?

          本文链接:https://www.haomeiwen.com/subject/tpwxphtx.html