如何实现iview-ui导航栏路径配置
短信预约 -IT技能 免费直播动态提醒
这篇文章主要介绍如何实现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导航栏路径配置”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注编程网行业资讯频道!
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341