vue项目中使用定时器,离开页面时清除定时器

使用

beforeRouteLeave(to, from, next) {
if (this.Timer) {
clearInterval(this.Timer);
}
next();
},

posted @ 2021-03-29 16:49  Rising、、、  阅读(614)  评论(0编辑  收藏  举报