Tabs Components

A set of components for creating customizable horizontal and vertical tab layouts with smooth transitions.

TabsHorizontal

The TabsHorizontal component creates a horizontal tab layout with an animated underline indicator for the active tab.

Usage

Active tab content: Welcome to the Home tab!

TabsVertical

The TabsVertical component creates a vertical tab layout with an animated side indicator for the active tab.

Usage

Dashboard

Overview of your main metrics and KPIs.

Props

PropTypeDefaultDescription
active
Number
0Index of the active tab
tabs
Array
['Tab 1', 'Tab 2']Array of tab labels
background
String
aliceblueBackground color of the active tab indicator
class
String
""Additional CSS classes to apply to the container
tabClass
String
""Additional CSS classes to apply to the tabs

Events

Both components emits the following events:

EventDescription
handleClickEmitted when a tab is clicked, with the index of the clicked tab

Styling

Both components use SCSS for styling. They create a main container with pseudo-elements for the indicator background and the active indicator. The active indicator's position and size are controlled by CSS custom properties (--left, --width for TabsHorizontal; --top, --height for TabsVertical) that are updated dynamically using JavaScript.

The components also use the v-wave directive for a ripple effect on click, and they support custom background colors for the active indicator.