定時器以及銷燬
阿新 • • 發佈:2021-10-18
利用hook監聽鉤子函式 進行銷燬這種一般倒銷燬倒計時用的比較多
hook還可以監聽元件的鉤子函式
mounted(){
this.timer=setInterval(()=>{
this.getMyDate()
},1000);
this.$on('hook:destroyed',()=>{clearInterval(this.timer);});
},