New to Kendo UI for VueStart a free 30-day trial

Tabs

Updated on Sep 9, 2026

The Kendo UI for Vue Tabstrip provides configuration options for:

Titles

You can handle the title of each TabStrip tab by using the title attribute of the tab and render plain text in it.

Example
View Source
Loading ...

Tabs on Initial Loading

The TabStrip displays no tabs upon its initial loading. To change this behavior, set the selected property of the TabStrip component.

Example
View Source
Loading ...

Tab Position

The tabPosition property allows placing the TabStripNavigation on different positions around the content.

Example
View Source
Loading ...

Tab Alignment

The tabAlignment property allows aligning the tabs to start, center, end, justify, or stretched.

Example
View Source
Loading ...

Disabled State

You can disable a specific TabStrip tab by setting the disabled property to true.

Example
View Source
Loading ...

Closable Tabs

You can enable the user to close specific TabStrip tabs. The implementation of the closable tabs functionality requires you to use a custom component and render a title with a button for closing the tab.

Example
View Source
Loading ...