Vue清除定时器方法

方法1

data() {            
    return {                              
        timer: null  // 定时器名称          
    }        
},

this.timer = (() => {
    // 某些操作
}, 1000)
beforeDestroy() {
    clearInterval(this.timer);        
    this.timer = null;
}

方法2

const timer = setInterval(() =>{                    
    // 某些定时器操作                
}, 500);            
// 通过$once来监听定时器,在beforeDestroy钩子可以被清除。
this.$once('hook:beforeDestroy', () => {            
    clearInterval(timer);                                    
})
————————————————
版权声明:本文为CSDN博主「Object_name」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/qq_21132509/article/details/83504522

你可能感兴趣的:(前端)