added tabs component, org show wip

This commit is contained in:
2025-04-07 19:59:30 +01:00
parent 2e2c0a033b
commit 5d042900ae
10 changed files with 158 additions and 8 deletions

View File

@@ -0,0 +1,15 @@
<script setup lang="ts">
import type { TabsRootEmits, TabsRootProps } from 'reka-ui'
import { TabsRoot, useForwardPropsEmits } from 'reka-ui'
const props = defineProps<TabsRootProps>()
const emits = defineEmits<TabsRootEmits>()
const forwarded = useForwardPropsEmits(props, emits)
</script>
<template>
<TabsRoot v-bind="forwarded">
<slot />
</TabsRoot>
</template>