遇到页面嵌套destroyed无法触发删除定时器,可以使用监听路由方式
data() {
return {
timer_interval: null,
}
},
watch: {
$route(){
console.log("成功!")
let that = this;
clearInterval(that.timer_interval);
that.timer_interval = null;
}
},
destroyed() {
console.log(" destroyed ") // 失效
}