vue 单独页面定时器 离开页面销毁定时器

data: {
    return {
        timer: null
    }
},
created() {
    this.timer = setInterval(....);
},
beforeDestroy() {
    if(this.timer) { //如果定时器还在运行 或者直接关闭,不用判断
        clearInterval(this.timer); //关闭
    }
}
posted @   geek程序员  阅读(9877)  评论(0编辑  收藏  举报
努力加载评论中...
点击右上角即可分享
微信分享提示