# Content
v-toolbar
の extension スロットに v-tabs
を入れるのが一般的です。 Using v-toolbar
's tabs prop auto adjusts its height to 48px to match v-tabs
.
v-tabs
コンポーネントは、選択可能なアイテムの背後にコンテンツを隠すために使用されます。 これは、タブがリンクであり、tab-items がコンテンツであるページの疑似ナビゲーションとしても使用できます。
v-tabs
コンポーネントは v-item-group のスタイル付き拡張です。 コンテンツのグループを管理するための使いやすいインターフェイスを提供します。
dark propと NOT を使用してカスタム color を提供する場合、v-tabs
コンポーネントはデフォルトで色を white に設定します。
必須入力フィールドを含むv-tab-item
を使用する場合、まだ表示されていない必須フィールドを検証するためにeager propを使用する必要があります。
align-with-title propを使用して、v-tabs
を v-toolbar-title
コンポーネントに並べます。 (v-app-bar-nav-icon
または v-btn
は v-toolbar
で使用する必要があります)。
center-active prop は、アクティブなタブを常に中央にします。
prev-icon と next-icon をカスタムペジネーションアイコンに適用できます。
The fixed-tabs prop forces v-tab
to take up all available space up to the maximum width (300px).
The grow prop will make the tab items take up all available space up to a maximum width of 300px.
Using icons-and-text prop increases the v-tabs
height to 72px to allow for both icons as well as text to be used.
タブ項目がコンテナにオーバーフローすると、デスクトップではページネーションコントロール表示されます。 モバイルデバイスでは、矢印は show-arrows プロパティでのみ表示されます。
The right prop aligns the tabs to the right.
The vertical prop allows for v-tab
components to stack vertically.
v-toolbar
の extension スロットに v-tabs
を入れるのが一般的です。 Using v-toolbar
's tabs prop auto adjusts its height to 48px to match v-tabs
.
You can represent v-tab
actions by using single icons. This is useful when it is easy to correlate content to each tab.
When changing your v-tab-item
, the content area will smoothly scale to the new size.
タブを動的に追加および削除することができます。 This allows you to update to any number and the v-tabs
component will react. この例では、新しいタブを追加すると、それに合わせてモデルも自動的に変更されます。 さらにタブを追加してコンテナからはみ出すと、選択されたアイテムが自動的にスクロールして表示されます。 Remove all v-tab
s and the slider will disappear.
メニューを使って追加のタブを保持し、その場で入れ替えることができます。
The v-tabs-items
component allows for you to customize the content per tab. Using a shared v-model
, the v-tabs-items
will sync with the currently selected v-tab
.