destroyed: function () {
console.log("我已经离开了!");
this.stopTimer();
},
说明:destroyed是与methods、mounted同层级的
mounted(){
this.startTimer();
},
//离开当前页面后执行
destroyed: function () {
this.stopTimer();
},
destroyed: function () {
console.log("我已经离开了!");
this.stopTimer();
},
说明:destroyed是与methods、mounted同层级的
mounted(){
this.startTimer();
},
//离开当前页面后执行
destroyed: function () {
this.stopTimer();
},