javascript - vue vue-router 面包屑问题?
学习ing
学习ing 2017-06-12 09:31:30
0
1
965

vue+element UI 搭建的web项目,面包屑 首页>列表>内容
如何书写router.js

{
            path: '/index',
            component: CdnLayout,
            children: [
                { path: 'list', component: List, name: '列表页' },
                { path: 'list/detal', component: Detail, name: '内容'}
            ]
        },
 let matched = this.$route.matched.filter(item => item.name;
                );
                const first = matched[0];
                if (first && (first.name !== '首页' || first.path !== '')) {
                     matched = [{ name: '首页', path: '/index' }].concat(matched)

                }

那么我在这个面包屑中如何去写才可以在内容页面 可以显示 首页>列表>内容

谢谢,在线等

学习ing
学习ing

全部回复(1)
过去多啦不再A梦

你都遍历出来了,用V-for 循环显示出来就行了啊

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板