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)
}
那麼我在這個麵包屑中如何去寫才可以在內容頁面 可以顯示 首頁>列表>內容
謝謝,在線等
你都遍歷出來了,用V-for 循環顯示出來就行了啊