Files
Caramel-CRM/resources/js/components/ui/tabs/Tabs.vue
T

16 lines
376 B
Vue
Raw Normal View History

2025-10-20 08:57:51 +02:00
<script setup lang="ts">
import type { TabsRootEmits, TabsRootProps } from "reka-ui"
import { TabsRoot, useForwardPropsEmits } from "reka-ui"
const props = defineProps<TabsRootProps>()
2025-10-20 08:57:51 +02:00
const emits = defineEmits<TabsRootEmits>()
const forwarded = useForwardPropsEmits(props, emits)
2025-10-20 08:57:51 +02:00
</script>
<template>
<TabsRoot v-bind="forwarded">
2025-10-20 08:57:51 +02:00
<slot />
</TabsRoot>
</template>