亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

如何實現iview-ui導航欄路徑配置

發布時間:2021-08-20 10:31:27 來源:億速云 閱讀:145 作者:小新 欄目:web開發

這篇文章主要介紹如何實現iview-ui導航欄路徑配置,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

示例

//router.js
let routes = [
  {
    path: '/',
    redirect: '/admin',
  },
  {
    path: '/login',
    name: 'login',
    meta: {title: '登錄'},
    component: () => import('./components/login.vue')
  },
  {
    path: '/admin',
    name: 'admin',
    meta: {title: '主頁'},
    component: () => import('./components/admin.vue'),
    children: [
      {
        path: 'operation',
        name: 'operation',
        meta: {title: '運營管理'},
        component: () => import('./components/admin/operation.vue')
      },
      {
        path: 'order',
        name: 'order',
        meta: {title: '訂單中心'},
        redirect: 'order/index',
        component: () => import('./components/admin/order.vue'),
        children: [
          {
            path: 'index',
            name: 'index',
            meta: {title: ''},
            component: () => import('./components/admin/ordercenter.vue')
          },
          {
            path: 'detail',
            name: 'detail',
            meta: {title: '訂單詳情'},
            component: () => import('./components/admin/orderdetail.vue')
          },
        ]
      },
    ]
  },
]

export default routes

這個是我部分的router路徑配置表

 /*面包屑路徑處理*/
 eve_breadcrumbItem_change(){
        var list = this.$route.fullPath.split('/')//list[0]:是空格
        this.BreadcrumbItem = []
        function fn(obj, arr, index,self) {
          if (obj.hasOwnProperty('children')&&obj['children'].length>0) {
            for (let one of obj.children) {
              if (one.name != 'index' && one.name == arr[index]) {
                self.BreadcrumbItem.push({'title': one.meta.title, 'path': list.slice(0,index+1).join('/')})
                return one.hasOwnProperty('children')&&one['children'].length>0?fn(one,arr,index+1,self):false
              }
            }
          }
        }
        for(let one of this.$router.options.routes){
          if(one.hasOwnProperty('name')&&one.name == list[1]){
            this.BreadcrumbItem.push({'title': one.meta.title, 'path': one.path})
            fn(one,list,2,this)
          }
        }
      }

這個是就是本文的重點,其實也簡單,就是遞歸了下路徑名重新組裝了下數據給面包屑傳過去

watch: {
  '$route'(to, from) {
    this.eve_breadcrumbItem_change()
  }
},
...
mounted() {
  this.eve_breadcrumbItem_change()
},

使用也簡單,無非watch檢測下路徑變化,避免刷新頁面時沒路徑,在mounted里再調用一下。

以上是“如何實現iview-ui導航欄路徑配置”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

锡林郭勒盟| 新乐市| 平和县| 铜陵市| 揭西县| 剑阁县| 屏南县| 塔河县| 金沙县| 乐山市| 尼木县| 射阳县| 芮城县| 江北区| 英德市| 澄江县| 石柱| 五大连池市| 余庆县| 融水| 滦平县| 巴林右旗| 隆昌县| 镇远县| 林周县| 红原县| 隆子县| 靖西县| 淳安县| 张掖市| 壤塘县| 文登市| 阜城县| 河北区| 隆尧县| 重庆市| 云浮市| 南皮县| 昌邑市| 贺州市| 嵩明县|