Webprojekt erstellt mit vue+element UI, Breadcrumbs Homepage>Liste>Inhalt
So schreibe ich 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)
}
Wie schreibe ich also in diesen Breadcrumb, damit er auf der Inhaltsseite „Startseite>Liste>Inhalt“ angezeigt werden kann?
Danke, ich warte online
你都遍历出来了,用V-for 循环显示出来就行了啊