欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

使用element-ui的el-menu导航选中后刷新页面保持当前选中

程序员文章站 2022-06-17 08:50:31
//router当导航激活时允许以index作为路由进行页面的跳转,$route.path当前路由对象的路径,字符串,绝对路径 //unique-opened只允许有一个下拉菜单处于打开的状态 //使用default-active来实现当前菜单激活的选项 //default... ......
     <el-menu :default-active=‘$route.path‘ :router=‘true‘ :unique-opened=‘true‘ :default-openeds="defaultopeneds" 
        background-color="#bd1e22" text-color="#fff" active-text-color="#ffd04b">         
        //router当导航激活时允许以index作为路由进行页面的跳转,$route.path当前路由对象的路径,字符串,绝对路径         
        //unique-opened只允许有一个下拉菜单处于打开的状态         
        //使用default-active来实现当前菜单激活的选项
        //default-openeds当前打开的 sub-menu 的 index 的数组
<el-menu-item index=‘/home‘>首页</el-menu-item>
            <el-submenu>
              <template slot="title">
                <i class=‘‘></i><span>导航一</span>
              </template>
              <el-menu-item index=‘/first/page1‘>
                <template slot="title">
                  <i class=‘‘></i><span>选项一</span>
                </template>
              </el-menu-item>
              <el-menu-item index=‘/first/page2‘>
                <template slot="title">
                  <i class=‘‘></i><span>选项二</span>
                </template>
              </el-menu-item>
            </el-submenu>
        </el-menu
>
     mounted(){
            let path = this.$route.path;
            this.navconfig = [
                {index:'1',path:['/system/aa','/system/bb','/system/cc']},
            ];
            let thisnav = this.navconfig.find(item =>{
                return item.path.includes(path);
            });
            this.defaultopeneds = [thisnav.index];
        }