Ребятушки, как передать в route name из комонента
есть вот такие пути:
export const routes = [
//{ path: '/', component: HomePage },
{ path: '/menu', component: MenuPage, children: [
{ path: '', component: CategoriesPage, name: 'Меню'},
{ path: ':categoryId', component: CategoryPage, children: [
{ path: '', component: ProductsPage },
{ path: ':productId', component: ProductPage }
] }
] },
{ path: '/profile', component: ProfilePage, name: 'Профиль' },
{ path: '/cart', component: CartPage, name: 'Корзина' },
{ path: '/promo', component: PromoPage, name: 'Акции' },
{ path: '/restourants', component: RestourantsPage, name: 'Рестораны' }
];
С не динамичными компонентами проблем нет задать имя, а вот как с динамичными быть, такими как
{ path: ':categoryId', component: CategoryPage,
как сделать что бы менялось name в зависимости от названия категории,
у меня сверху должна выводится текущая локация следующим кодом:
{{ $route.name }}