method:{
//這里調(diào)用了定時任務(wù)
toSon(){
? ? ? //定時任務(wù)
??????var?self?=?this;
??????this.deaa?=?window.setInterval(()?=>?{
????????setTimeout(self.end(),?0)
??????},?1000)
}
end(){
??????if(this.timer?==?''){
????????//定時器的內(nèi)容寫在這里面
????????console.log("=====>>>定時器")
??????}else{
? ? ? ? //銷毀定時任務(wù)
????????window.clearInterval(this.deaa);
??????}
?}
}
//銷毀頁面后調(diào)用的方法 注意 這個beforeDestroy是一個生命周期
beforeDestroy()?{
????this.timer?=?'1'
}