vue定时器销毁

            const timer = setInterval(() =>{                    
            console.log('定时器简单的工作中')
        }, 500);            

        // 通过$once来监听定时器,在beforeDestroy钩子可以被清除。
        this.$once('hook:beforeDestroy', () => {            
            clearInterval(timer);
            console.log('我被销毁了')                                 
        })

你可能感兴趣的:(vue定时器销毁)