Skip to content

OrTabs

Tabs make switching between numerous views a breeze

Import

This is if you didn't import the entire library through the Plugin

javascript
import { OrTab, OrTabs } from 'ornament-ui';
import { OrTab, OrTabs } from 'ornament-ui';

Basic

WestEast
html
<or-tabs>
    <or-tab title="West">
        <p>Text for the west</p>
    </or-tab>
    <or-tab title="East">
        <p>Text for the east</p>
    </or-tab>
</or-tabs>
<or-tabs>
    <or-tab title="West">
        <p>Text for the west</p>
    </or-tab>
    <or-tab title="East">
        <p>Text for the east</p>
    </or-tab>
</or-tabs>

Customize Headers

Header with Icon East
html
<or-tabs>
    <or-tab title="West">
        <template #title>
            <i class="ri ri-home-line"></i> Header with Icon
        </template>
    </or-tab>
    <or-tab title="East">
        <p>Text for the east</p>
    </or-tab>
</or-tabs>
<or-tabs>
    <or-tab title="West">
        <template #title>
            <i class="ri ri-home-line"></i> Header with Icon
        </template>
    </or-tab>
    <or-tab title="East">
        <p>Text for the east</p>
    </or-tab>
</or-tabs>

Props

PropDefaultTypeValuesDescription
positionleftstringleft, rightPosition of the

D2B ___ Chidi Ikeoha