method:{
//这里调用了定时任务
toSon(){
//定时任务
var self = this;
this.deaa = window.setInterval(() => {
setTimeout(self.end(), 0)
}, 1000)
}
end(){
if(this.timer == ''){
//定时器的内容写在这里面
console.log("=====>>>定时器")
}else{
//销毁定时任务
window.clearInterval(this.deaa);
}
}
}
//销毁页面后调用的方法 注意 这个beforeDestroy是一个生命周期
beforeDestroy() {
this.timer = '1'
}
网友评论