Tabs

Divide data collections which are related yet belong to different types.

Basic usage

Basic and concise tabs.

Card Style

Tabs styled as cards.

Border card

Border card tabs.

Tab position

You can use tab-position attribute to set the tab's position.

Custom Tab

You can use named slot to customize the tab label content.

Add & close tab

Only card type Tabs support addable & closeable.

Customized add button icon 2.4.0

Customized trigger button of new tab

Tabs API

Tabs Attributes

NameDescriptionTypeDefault
model-value / v-modelbinding value, name of the selected tab, the default value is the name of first tabstring / number
typetype of Tabenum''
closablewhether Tab is closablebooleanfalse
addablewhether Tab is addablebooleanfalse
editablewhether Tab is addable and closablebooleanfalse
tab-positionposition of tabsenumtop
stretchwhether width of tab automatically fits its containerbooleanfalse
before-leavehook function before switching tab. If false is returned or a Promise is returned and then is rejected, switching will be preventedFunction() => true

Tabs Events

NameDescriptionParameters
tab-clicktriggers when a tab is clickedFunction
tab-changetriggers when activeName is changedFunction
tab-removetriggers when tab-remove button is clickedFunction
tab-addtriggers when tab-add button is clickedFunction
edittriggers when tab-add button or tab-remove is clickedFunction

Tabs Slots

NameDescriptionSubtags
defaultcustomize default contentTab-pane
addIcon 2.4.0 deprecatedcustomize add button icon
add-icon 2.5.4customize add button icon

Tab-pane API

Tab-pane Attributes

NameDescriptionTypeDefault
labeltitle of the tabstring''
disabledwhether Tab is disabledbooleanfalse
nameidentifier corresponding to the name of Tabs, representing the alias of the tab-pane, the default is ordinal number of the tab-pane in the sequence, e.g. the first tab-pane is '0'string / number
closablewhether Tab is closablebooleanfalse
lazywhether Tab is lazily renderedbooleanfalse

Tab-pane Slots

NameDescription
defaultTab-pane's content
labelTab-pane's label

Source

ComponentStyleDocs

Contributors