I have a simple v-tab with router link :
<v-tab>
<router-link
class="normalize font-weight-bold"
to="/docs"
>
Docs
</router-link>
</v-tab>
Problem:
The link works only when clicked exactly on the text 'Docs'. I want to be able to switch tabs when clicked on the tab area for a better UX. How should I edit the code such that the user can switch tabs when s/he clicks on the tab area ?