mirror of
https://github.com/directus/directus.git
synced 2026-01-31 06:27:58 -05:00
* Rotate JPG image on upload #4206 * fixes #3949 width/height generated for gif and tif * API hooks for event added for auth.login #4079 * updated doc for api hooks for new auth.login event * Style tweaks * Update docs * Tweak docs some more * Spelling error * Allow non-required flags and pass to hook * SDK - Persistent login refresh fixes #4113 * Fixed #4145 SDK, Token Expired error * Spell check * Docs Spell check * Docs Spell check * Docs Spell check Co-authored-by: rijkvanzanten <rijkvanzanten@me.com>
33 lines
876 B
Markdown
33 lines
876 B
Markdown
# Tabs Items
|
|
|
|
Tabs Items mirror a tab and display information for a selected tab. If a tab item is not selected, it automatically gets
|
|
hidden.
|
|
|
|
```html
|
|
<v-tabs-items v-model="selection">
|
|
<v-tab-item>Home Section</v-tab-item>
|
|
<v-tab-item>News Section</v-tab-item>
|
|
<v-tab-item>Help Section</v-tab-item>
|
|
</v-tabs-items>
|
|
```
|
|
|
|
## Reference
|
|
|
|
#### Props
|
|
|
|
| Prop | Description | Default | Type |
|
|
| ------- | ------------- | ----------- | ---------------------- |
|
|
| `value` | v-model value | `undefined` | `(string or number)[]` |
|
|
|
|
#### Events
|
|
|
|
| Event | Description | Value |
|
|
| ------- | --------------- | ------------------------------- |
|
|
| `input` | Updates v-model | `readonly (string or number)[]` |
|
|
|
|
#### Slots
|
|
|
|
| Slot | Description | Data |
|
|
| --------- | ----------- | ---- |
|
|
| _default_ | | |
|