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);
}
},
},
本站资源均来自互联网,仅供研究学习,禁止违法使用和商用,产生法律纠纷本站概不负责!如果侵犯了您的权益请与我们联系!
转载请注明出处: 免费源码网-免费的源码资源网站 » el-table添加fixed后错位问题
发表评论 取消回复