<el-menu
:default-openeds="defaultOpeneds"
class="el-menu-vertical-demo"
unique-opened
menu-trigger="hover"
background-color="#FFF"
text-color="#000"
active-text-color="#FFF"
router :default-active="currentMenu"
@open="open"
>
</el-menu>
this.navConfig = [ // 为导航中所有的路由数据
{index:‘1‘,path:[
‘/studentManagement‘,
‘/order‘,‘/jurisdiction‘,
‘/billingType‘,
‘/singleQuantitySetting‘,
‘/productSettings‘,
‘/studentSourceSetting‘,
‘/signingMethod‘,
‘/preferentialActivities‘,
‘/collectionAccount‘,
‘/stagingPlatform‘,
‘/studentGrade‘,
‘/studentStatus‘,
‘/accountSet‘,
‘/roleSet‘
]},
];
let thisNav = this.navConfig.find(item =>{
return item.path.includes(path);
});
if(thisNav){
this.defaultOpeneds = [thisNav.index]
}else{
if(localStorage.getItem(‘finance_token‘)){
this.$router.push({
path:‘/order‘
})
}
}
页面刷新时保持当前选择
原文:https://www.cnblogs.com/zhanganyongxin/p/14616480.html