-
-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Possible to render full breadcrumb path? #105
Comments
The full path is always displayed for example in demo |
Hmm strange. I'm getting the current page and the parent, not the grand-aprent when I'm on a grandchild page, with or without template. Using version
So in this instance, when I'm on |
@fipp Hello
{
- path: '/my-service/cars',
+ path: '/cars',
name: 'Cars',
component: Cars,
meta: {
breadcrumb: {
label: 'Cars',
parent: 'FrontPage'
}
}
},
{
path: '/cars',
name: 'Cars',
component: Cars,
meta: {
breadcrumb: {
label: 'Cars',
parent: 'FrontPage'
}
},
children: [
{
path: ':carId',
name: 'CarPage',
component: CarPage,
meta: {
breadcrumb: (params) => `${params.carId}`
}
}
]
}
|
@fipp after you submit paths and install version 0.7.10 your path will be complete |
Thanks @Scrum, I got the full path with |
Hi, is it possible for
<Breadcrumbs />
to render the full breadcumb path, e.g.Path 1 > Path 2 > Path 3 > Path 4
, and not just the current one and the parent?The text was updated successfully, but these errors were encountered: