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);}},},