vue-2-crumbs
vue-2-crumbs copied to clipboard
Breadcrumbs plugin for Vue.js 2 framework that allows to select parent route in route meta object with no need of sub-routing
Hello Everyone I am trying to use vue-2-crumbs and I have some routes as follows in my router.js file this route is considered as the parent { path: "/metaService/:id/child", name:...
I'm getting the error: > [Vue warn]: You are using the runtime-only build of Vue where the template compiler is not available. Either pre-compile the templates into render functions, or...
Hi, Thanks for implementing this great idea. I'm trying to use this package in my project and I'm testing with simple a set breadcrumb in component and it's returns error:...
Closes: #5 Here's a link to a reproduction: https://codesandbox.io/s/vue-template-yy32j (When you click on 'foo' in the navigation, the router will only show the `id`, while it should show the full...
Breadcrumb labels can be dynamic like [vue-2-breadcrumbs](https://github.com/Scrum/vue-2-breadcrumbs) ``` meta: { breadcrumb: () => `foo ${1 + 1}` } ```
Fixed bug, when breadcrumb not settled in route.meta
Currently we have template ``` {{route.label}} {{getRouteLabel(currentRoute)}} ``` But unfortunately, we cant change latest li. I would offer change it to ``` {{getRouteLabel(currentRoute)}} ``` Via slot we can change li,...
Using 'parentsList' for dynamic breadcrumbs '$route' watch is triggered after 'breadcrumbChanged' event when navigating using router.push/router.replace. As '$route' watch clears 'parentsDynamicRoutes' therefore only current breadcrumb is generated not the full...