美文网首页
vue定时器销毁

vue定时器销毁

作者: 科技鲨鱼TechShark | 来源:发表于2020-12-15 16:15 被阅读0次
                const timer = setInterval(() =>{                    
                console.log('定时器简单的工作中')
            }, 500);            
    
            // 通过$once来监听定时器,在beforeDestroy钩子可以被清除。
            this.$once('hook:beforeDestroy', () => {            
                clearInterval(timer);
                console.log('我被销毁了')                                 
            })
    

    相关文章

      网友评论

          本文标题:vue定时器销毁

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