# Tabs Tabs work like tabs in the browser and are there to split data into quickly accessible pages. ```html Tab 1 Tab 2 Tab 3 ``` ## With Tab Items To be able to display a page depending on the tab use tab items. ```html Tab 1 Tab 2 Tab 3

This is the first page

This is the second page

This is the third page

``` ## Reference #### Props | Prop | Description | Default | Type | | ---------- | ------------------------------------- | ----------- | ---------------------- | | `value` | The currently selected tab | `undefined` | `(string or number)[]` | | `vertical` | Display the tabs in a vertical format | `false` | `Boolean` | #### CSS Variables | Variable | Default | | -------------------------- | -------------------------- | | `--v-tabs-underline-color` | `var(--foreground-normal)` | #### Events | Event | Description | Value | | ------- | ------------------------------- | ----- | | `input` | Used to update the selected tab | | #### Slots | Slot | Description | Data | | --------- | ----------- | ---- | | _default_ | | |