中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

如何實現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

拜城县| 乌苏市| 成都市| 格尔木市| 涪陵区| 荆门市| 金山区| 台南市| 合川市| 宁河县| 温泉县| 高青县| 汶川县| 东乌珠穆沁旗| 开化县| 博罗县| 共和县| 阿拉善左旗| 神农架林区| 富蕴县| 斗六市| 嘉义县| 通道| 新巴尔虎左旗| 义马市| 团风县| 大安市| 许昌市| 长兴县| 山西省| 红河县| 延津县| 阜城县| 防城港市| 奉化市| 南投市| 临高县| 修武县| 中宁县| 富顺县| 南开区|