关于ElementUI导航组件el-menu刷新页面后恢复默认问题
<el-menu:default-active="activeIndex"router //是否使用 vue-router 的模式,启用该模式会在激活导航时以 index 作为 path 进行路由跳转>// index值设置为路由path<el-menu-item index="/">首页</el-menu-item><el-menu-item index
·
<el-menu
:default-active="activeIndex"
router //是否使用 vue-router 的模式,启用该模式会在激活导航时以 index 作为 path 进行路由跳转
>
// index值设置为路由path
<el-menu-item index="/">首页</el-menu-item>
<el-menu-item index="/mine">我的</el-menu-item>
</el-menu>
...
data () {
return {
activeIndex: this.$route.path
}
},
更多推荐
已为社区贡献1条内容
所有评论(0)