进入路由页面

mounted(){

     this.$nextTick(()=>{

        show();

    })

}

离开路由页面后执行函数

destroyed: function () {
           console.log("我已经离开了!");
    this.stopTimer();
 },

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

Logo

前往低代码交流专区

更多推荐