0
点赞
收藏
分享

微信扫一扫

侧边栏和tab选项卡的绑定问题

罗蓁蓁 2022-04-26 阅读 58
vueelementui

el-menu 的属性
注意添加 :default-active="$route.path":router="true"

 <el-menu
        :default-active="$route.path"
        background-color="#545c64" text-color="#fff"
        :unique-opened="true"
        style="min-height: 100%;overflow-x:hidden;"
        :collapse="isCollapse"
        :collapse-transition="false"
        :router="true"
      >

侧边栏菜单路由,用 index 进行导航

 <el-menu-item index="/index">
 	<i class="el-icon-s-home"></i>
    <span slot="title">首页</span>
 </el-menu-item>

可以解决点击tab后对应侧边栏的高亮,另外,页面刷新后仍能保持高亮。

效果展示
在这里插入图片描述

举报

相关推荐

0 条评论