zoukankan      html  css  js  c++  java
  • elementUI的导航栏怎么根据路由默认选中相关项

    1. 

    <el-menu :default-active="this.$route.path.substr(1)" class="left-nav">

    2. 

    el-submenu或者el-menu-item的index设置成路由对应的字符串
     
     
    比如:路由为http://localhost:8080/#/project/list时,将需要被选中的el-submenu或者el-menu-item的index设置为 index="project/list"
     
     
    ----------------------------------------------------------------------------------加强版-----------------------------------------------------------------------------------------------
    也是根据路由选择左侧导航栏,但是路由可能有不固定的参数,那就根据固定的参数来判断选择哪一项:
    html: 
      <el-menu :default-active="activedMenu" class="left-nav" :collapse="isCollapse">
          <el-menu-item index="project" @click="changeRoute('/project/list')">
            <i class="iconfont icon-icproject"></i>
            <span slot="title">项目管理</span>
          </el-menu-item>
          <el-submenu index="operation">
            <template slot="title">
              <i class="iconfont icon-icoperation"></i>
              <span slot="title">运营管理</span>
            </template>
            <el-menu-item index="operation/test" @click="changeRoute('/operation/test')">
              <i class="fa fa-list-alt"></i>考试题
            </el-menu-item>
        </el-submenu>
    </el-menu>

    ts:

      get activedMenu() {
        if (this.$route.path.indexOf('/project') == 0) {
          return 'project'
        } else if (this.$route.path.indexOf('/operation/test') == 0) {
          return 'operation/test'
        } 
      }

    此时如果路径为:/project/12/···就可以根据开头“/project”定位到相应的左侧栏

  • 相关阅读:
    5.8
    python运维自动化
    javascript学习(一)
    python学习-1
    A-GPS学习笔记(二) 之SUPL
    A-GPS学习笔记(一)
    CF756D Bacterial Melee
    LG P2495 [SDOI2011]消耗战
    LG P7325 [WC2021] 斐波那契
    LG P7324 [WC2021] 表达式求值
  • 原文地址:https://www.cnblogs.com/XHappyness/p/7682944.html
Copyright © 2011-2022 走看看