vue项目中使用定时器,离开页面时清除定时器
使用
beforeRouteLeave(to, from, next) {
if (this.Timer) {
clearInterval(this.Timer);
}
next();
},
以上是 vue项目中使用定时器,离开页面时清除定时器 的全部内容, 来源链接: utcz.com/z/376135.html
使用
beforeRouteLeave(to, from, next) {
if (this.Timer) {
clearInterval(this.Timer);
}
next();
},
以上是 vue项目中使用定时器,离开页面时清除定时器 的全部内容, 来源链接: utcz.com/z/376135.html