I've set my routes like so:
{
path: '/',
name: 'Dashboard',
component: Dashboard
},
{
path: '/page2',
name: 'Page2',
component: Page2
},
When the user visits my site dashboard should be the first route to load by default. This is currently happening. However my issue is within the Nav Drawer the button to the dashboard stays highlighted as active, see image:
The only way I can find to stop Dasboard from staying highlighted is to give a trailing name to the dashboard route, eg.
{
path: '/dashboard',
name: 'Dashboard',
component: Dashboard
},
But now this route won't load by default, unless there's a way to do this somewhere else?

