We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
isActive
Example:
const items = [ { label: 'Dashboard', to: { name: 'dashboard' }, }, { label: 'Post', to: { name: 'post', params: { id: 1570 } }, }, ];
The text was updated successfully, but these errors were encountered:
Named routes work fine but TabMenu only is an exception as it checks paths, there is room for improvement here.
Sorry, something went wrong.
Tracked at;
#830
No branches or pull requests
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:
The text was updated successfully, but these errors were encountered: