samturrell / vue-breadcrumbs

Breadcrumbs for Vue.js
MIT License
146 stars 27 forks source link

How do I use dynamic subroutes with this component? #14

Closed jlamim closed 6 years ago

jlamim commented 6 years ago

I need to use something like this:

export default new Router({ mode: 'history', routes: [ { path: '/', name: 'Home', component: Home }, { path: '/informativos', name: 'Informativos', component: Informativos, meta: { breadcrumb: 'Informativos' }, children: [ { path: '/informativo/:id/:title', component: InformativoDetalhes, meta: { breadcrumb: 'Título' } } ] } ] })

samturrell commented 6 years ago

Duplicate of #1 I believe.