1 方案1

在这里插入图片描述

return {
	isShow:false,
}
  mounted() {
    this.isShow=true
  },
  watch: {
    '$route'(newRoute) {
      this.monitoredRoute = newRoute; // 将新的路由信息保存到组件的monitoredRoute属性中
      // 执行其他操作或调用其他方法
    },
    //或
    $route(newRoute) {
      this.monitoredRoute = newRoute; // 将新的路由信息保存到组件的monitoredRoute属性中
      // 执行其他操作或调用其他方法
      if (newRoute.name == "Parking") {
        this.isShow = false;  
        var res = this;
        setTimeout(function () {
            res.isShow = true;
        }, 550);
      }
    },
  },

点赞(0) 打赏

评论列表 共有 0 条评论

暂无评论

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部