mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 16:38:20 +01:00
26 lines
689 B
Vue
26 lines
689 B
Vue
<script setup lang="ts">
|
|
import { cn } from "@/lib/utils";
|
|
import { reactiveOmit } from "@vueuse/core";
|
|
import type { TabsRootEmits, TabsRootProps } from "reka-ui";
|
|
import { TabsRoot, useForwardPropsEmits } from "reka-ui";
|
|
import type { HTMLAttributes } from "vue";
|
|
|
|
const props = defineProps<
|
|
TabsRootProps & { class?: HTMLAttributes["class"] }
|
|
>();
|
|
const emits = defineEmits<TabsRootEmits>();
|
|
|
|
const delegatedProps = reactiveOmit(props, "class");
|
|
const forwarded = useForwardPropsEmits(delegatedProps, emits);
|
|
</script>
|
|
|
|
<template>
|
|
<TabsRoot
|
|
data-slot="tabs"
|
|
v-bind="forwarded"
|
|
:class="cn('flex flex-col gap-2', props.class)"
|
|
>
|
|
<slot />
|
|
</TabsRoot>
|
|
</template>
|