Supposing I have a User View with two Cards, one that is not important to the question (UserProfilePhoto Card) and another one (UserDetails Card) with the following code:
<VTabs>
<VTab>
Profile
</VTab>
<VTab>
Tasks
</VTab>
<VTab>
Messages
</VTab>
<VTabItem>
<Profile> // component
</VTabItem>
<VTabItem>
<Tasks> // component
</VTabItem>
<VTabItem>
<Messages> // component
</VTabItem>
</VTabs>
What would I need to add to VTab or VTabItem that would change the url to, let's say
website.com/user/:id/tasks
Whenever the active tab is "Tasks"? And, if above URL was sent to somebody it'd load the User view with the tab on the User Details Card with "Tasks" as the selected, instead of the default "Profile".