比如页面销毁前清除定时器,可以直接利用vue的程式化化监听器,方便又好用。
GetBjTime:function(){
var that=this;
```
var timer=setInterval(function(){
//do somthing
},1000);
```
that.$once('hook:beforeDestroy',() => {
clearInterval(timer);
})
}
网友评论