91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

vue2.0中elementUI如何制作面包屑導航欄

發布時間:2021-06-17 12:52:53 來源:億速云 閱讀:370 作者:小新 欄目:web開發

這篇文章主要為大家展示了“vue2.0中elementUI如何制作面包屑導航欄”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“vue2.0中elementUI如何制作面包屑導航欄”這篇文章吧。

Main.js

var routeList = [];
router.beforeEach((to, from, next) => {
 var index = -1;
 for(var i = 0; i < routeList.length; i++) {
  if(routeList[i].name == to.name) {
   index = i;
   break;
  }
 }
 if (index !== -1) {
//如果存在路由列表,則把之后的路由都刪掉
  routeList.splice(index + 1, routeList.length - index - 1);
 } else if(to.name != '登錄'){
  routeList.push({"name":to.name,"path":to.fullPath});
 }
 to.meta.routeList = routeList;
 next()
});

2、在要使用的組件中

<template>
  <div class="level-bread">
   <el-breadcrumb separator="/">
    <el-breadcrumb-item v-for="item in realList" :to="item.path">{{item.name}}</el-breadcrumb-item>
   </el-breadcrumb>
  </div>
</template>

<script>
  export default {
   name: "lelve-bread",
   created(){
    this.getRoutePath();
   },
   data() {
    return {
     realList: []
    }
   },
   methods:{
    getRoutePath() {
     this.realList = this.$route.meta.routeList;
    }
   },
   beforeRouteEnter(to,from, next) {
    next((vm) => {
     vm.realList = to.meta.routeList;
    });
   },
   // watch:{
   //  $route:function(newV,oldV) {
   //   this.realList =newV.meta.routeList;
   //  }
   // }
  }
</script>

用 watch 或者 beforeRouteEnter 均可。

需要注意的是,beforeRouteEnter 此時訪問不到this。

const Foo = {
 template: `...`,
 beforeRouteEnter (to, from, next) {
  // 在渲染該組件的對應路由被 confirm 前調用
  // 不!能!獲取組件實例 `this`
  // 因為當守衛執行前,組件實例還沒被創建
 },
 beforeRouteUpdate (to, from, next) {
  // 在當前路由改變,但是該組件被復用時調用
  // 舉例來說,對于一個帶有動態參數的路徑 /foo/:id,在 /foo/1 和 /foo/2 之間跳轉的時候,
  // 由于會渲染同樣的 Foo 組件,因此組件實例會被復用。而這個鉤子就會在這個情況下被調用。
  // 可以訪問組件實例 `this`
 },
 beforeRouteLeave (to, from, next) {
  // 導航離開該組件的對應路由時調用
  // 可以訪問組件實例 `this`
 }
}

以上是“vue2.0中elementUI如何制作面包屑導航欄”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

三明市| 敦化市| 广南县| 上饶市| 筠连县| 泾阳县| 南阳市| 金华市| 广灵县| 三都| 年辖:市辖区| 龙游县| 漾濞| 会昌县| 彭阳县| 北碚区| 广宗县| 榕江县| 二手房| 乐安县| 垫江县| 米林县| 华阴市| 高平市| 铜山县| 桑植县| 芦山县| 天峨县| 衡阳市| 宾阳县| 微山县| 屯留县| 房产| 全州县| 三门县| 宽甸| 汉中市| 济阳县| 华池县| 界首市| 古蔺县|