We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Since its a single file component, there's no separate Tablist , TabPanel components.
Tablist
TabPanel
tab-item
tab-panel
each provides the tab binding.
tab
Example code to configure tabpanel :
<Tabs> <TabList /> <TabPanel v-slot="{ tab }" class="h-full"> {{ tab.content }} </TabPanel> </Tabs>
use the tab-panel slot
<Tabs> <template #tab-panel="{ tab }"> {{ tab.content }} </template> </Tabs>
There was an error while loading. Please reload this page.