v-tabs

<!-- The v-tabs component is used for hiding content behind a selectable item. 
This can also be used as a pseudo-navigation for a page, 
where the tabs are links and the tab-items are the content.
-->
<template>
  <v-tabs>
    <v-tab>Item One</v-tab>
    <v-tab>Item Two</v-tab>
    <v-tab>Item Three</v-tab>
  </v-tabs>
</template>
Foolish Flatworm