vue定时器销毁

2020-12-15  本文已影响0人  科技鲨鱼TechShark
            const timer = setInterval(() =>{                    
            console.log('定时器简单的工作中')
        }, 500);            

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

猜你喜欢

热点阅读