Answer the question
In order to leave comments, you need to log in
vue-router active tab indicator?
Hello. There are such routes:
{
path: '/items/:id',
component: layout,
children: [
{
path: '',
name: 'ItemPage',
component: () => import('pages/items/item.vue').then(m => m.default),
},
],
}
{
path: '/items/:id/settings',
component: layout,
children: [
{
path: '',
name: 'ItemSettings',
component: () => import('pages/items/itemSettings.vue').then(m => m.default),
},
],
};
http://localhost:8080/items/myitem?type=lol
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question