element 導航菜單 控制路由跳轉

首先複製官網的例子,在這基礎上再修改爲咱們想要的樣子。vue

<el-menu :default-active="activeIndex" class="el-menu-demo" mode="horizontal" @select="handleSelect">
 <el-menu-item index="1">處理中心</el-menu-item>
 <el-submenu index="2">
 <template slot="title">個人工做臺</template>
 <el-menu-item index="2-1">選項1</el-menu-item>
 <el-menu-item index="2-2">選項2</el-menu-item>
 <el-menu-item index="2-3">選項3</el-menu-item>
 <el-submenu index="2-4">
  <template slot="title">選項4</template>
  <el-menu-item index="2-4-1">選項1</el-menu-item>
  <el-menu-item index="2-4-2">選項2</el-menu-item>
  <el-menu-item index="2-4-3">選項3</el-menu-item>
 </el-submenu>
 </el-submenu>
 <el-menu-item index="3" disabled>消息中心</el-menu-item>
 <el-menu-item index="4"><a href="https://www.ele.me" rel="external nofollow" target="_blank">訂單管理</a></el-menu-item>
</el-menu>
 
<script>
 export default {
 data() {
  return {
  activeIndex: '1'
  };
 },
 methods: {
  handleSelect(key, keyPath) {
  console.log(key, keyPath);
  }
 }
 }
</script>

注意屬性:vue-router

default-active:當前激活菜單的 index

router:是否使用 vue-router 的模式,啓用該模式會在激活導航時以 index 做爲 path 進行路由跳轉

index:惟一標誌,,類型爲字符串,在每個el-menu-item組件上都有一個編號,給default-active標記


使用菜單欄進行路由跳轉:this

<el-menu :default-active="this.$router.path" router mode="horizontal">
 <el-menu-item v-for="(item,i) in navList" :key="i" :index="item.name">
  {{ item.navItem }}
 </el-menu-item>
</el-menu>

數據:spa

data() {
  return {
  navList:[
   {name:'/findProject',navItem:'發現項目'},
   {name:'/communityActivity',navItem:'社區動態'},
   {name:'/publishProject',navItem:'發佈項目'},
   {name:'/personalCenter',navItem:'我的中心'},
   {name:'/manageCenter',navItem:'管理員中心'},
  ]
  }
 }

router.jscode

配置路由

 

使用菜單欄進行路由跳轉有幾個注意點:router

1. 在el-menu加上router

2. index必須綁定路由的path,參考上面的例子,'/'不能少

3. default-active設爲當前路由(this.$router.path),這樣在路由變化的時候,對應的menu-item纔會高亮

當this.$router.path等於el-menu-item標籤中的index屬性值時則該item爲當前項,對應的menu-item纔會高亮。
相關文章
相關標籤/搜索