Closed
Description
Is it possible to make fully compatible menu items with named route? Doc: https://router.vuejs.org/guide/essentials/named-routes.html
Actually isActive
method of the TabMenu component check only with the string path declaration.
Example:
const items = [
{
label: 'Dashboard',
to: { name: 'dashboard' },
},
{
label: 'Post',
to: { name: 'post', params: { id: 1570 } },
},
];
Activity