First element in route.matched
has name
set to undefined
#2450
-
Description: const routes = {
path: '/user',
meta: { breadcrumb: { label: 'Users' } },
children: [
{
path: '',
name: 'user-list',
component: UserList,
},
{
path: ':userId',
component: User,
name: 'user-detail',
meta: {
breadcrumb: {
label: 'Detail',
},
},
children: [
{
path: 'edit',
component: User,
name: 'user-edit',
meta: {
breadcrumb: {
label: 'Edit',
},
},
},
],
},
],
} When I navigate to /user/10/edit and inspect the route.matched elements like this: const route = useRoute()
console.log(route.matched)
const crumbs = computed(() =>
route.matched.map((match) => ({
label: match.meta.breadcrumb?.label,
routeName: match.name,
})),
) I notice that the first element in the Expected Behaviour: Questions:
Environment:
Additional Notes: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
It's because your route with path |
Beta Was this translation helpful? Give feedback.
It's because your route with path
/user
has no name defined.