Finalize Typescript restructure

This commit is contained in:
Darko Gjorgjijoski
2026-04-06 17:59:15 +02:00
parent cab785172e
commit 74b4b2df4e
209 changed files with 12419 additions and 1745 deletions

View File

@@ -0,0 +1,24 @@
<template>
<TabPanel :class="[tabPanelContainer, 'focus:outline-hidden']">
<slot />
</TabPanel>
</template>
<script setup lang="ts">
import { TabPanel } from '@headlessui/vue'
withDefaults(
defineProps<{
title?: string | number
count?: string | number
countVariant?: string | number
tabPanelContainer?: string
}>(),
{
title: 'Tab',
count: '',
countVariant: '',
tabPanelContainer: 'py-4 mt-px',
},
)
</script>