vue + ElementUI 点击导航栏跳转页面是可以正常跳转高亮的,但通过页面内点击按钮跳转页面就会导致侧边栏不知道该选中那个了,下面说下解决方法
<el-menu class="sidebar-el-menu" :default-active="onRoutes" >
</el-menu>
computed:{
onRoutes(){
// this.$route.path
// debugger
if(this.$route.path.replace('/','')=='ProductEdit'){
return 'Product';
}
else if(this.$route.path.replace('/','')=='OrderDetail'){
return 'Order'
}
else{
return this.$route.path.replace('/','');
}
},
}
花了一个多小时终于搞定