mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-06 12:27:44 +00:00
16 lines
375 B
Vue
16 lines
375 B
Vue
<script setup lang="ts">
|
|
import { 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>
|