You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a way to achieve what's shown here in the Vue Router docs where you essentially end up with a route config that has something like this:
{path: '/settings',// You could also have named views at the topcomponent: UserSettings,children: [{path: 'emails',component: UserEmailsSubscriptions},{path: 'profile',components: {default: UserProfile,helper: UserProfilePreview}}]}
I'm most interested in the page being loaded into the named view as I have a Tab component in a parent route that I'd like to use to change what's contained in the router-view via the tab header. Right now, all that happens as far as I can tell is that the page is going into the default router-view.
The text was updated successfully, but these errors were encountered:
Is there a way to achieve what's shown here in the Vue Router docs where you essentially end up with a route config that has something like this:
I'm most interested in the page being loaded into the named view as I have a Tab component in a parent route that I'd like to use to change what's contained in the router-view via the tab header. Right now, all that happens as far as I can tell is that the page is going into the default router-view.
The text was updated successfully, but these errors were encountered: