Files
leim-tools/app/components/ui/tabs/Tabs.vue
Alexis 7fdab8601f Migration to nuxt 4
Used codemods CLI and reworked most alias'd path that stopped working
2025-07-27 14:30:30 +02:00

16 lines
380 B
Vue

<script setup lang="ts">
import { TabsRoot, useForwardPropsEmits } from "radix-vue"
import type { TabsRootEmits, TabsRootProps } from "radix-vue"
const props = defineProps<TabsRootProps>()
const emits = defineEmits<TabsRootEmits>()
const forwarded = useForwardPropsEmits(props, emits)
</script>
<template>
<TabsRoot v-bind="forwarded">
<slot />
</TabsRoot>
</template>