Element-ui左侧菜单刷新依旧高亮显示当前菜单
Posted cinderellastory
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Element-ui左侧菜单刷新依旧高亮显示当前菜单相关的知识,希望对你有一定的参考价值。
菜单代码
<el-menu class="sidebar-el-menu" :default-active="currentMenu" background-color="#324157" @select="handleSelect" text-color="#bfcbd9" active-text-color="#20a0ff" router> <el-menu-item v-for="(item,index) in items" :key="index" :index="item.index"> <i :class="item.icon"></i> <span slot="title">item.title</span> </el-menu-item> </el-menu>
JS代码
methods: getUrl() let self = this; let currentUrl = window.location.href; self.currentMenu = currentUrl.split(‘designer/‘)[1]; , created() this.getUrl();
以上是关于Element-ui左侧菜单刷新依旧高亮显示当前菜单的主要内容,如果未能解决你的问题,请参考以下文章
element-ui,router.push到其他路由,菜单栏不会高亮对应的路由