frontend/app/components/ui/tabs/TabsContent.vue

26 lines
572 B
Vue
Raw Normal View History

<script setup lang="ts">
import { TabsContent, type TabsContentProps } from "reka-ui";
2025-06-26 22:39:02 +02:00
import { computed, type HTMLAttributes } from "vue";
import { cn } from "@/lib/utils";
const props = defineProps<
TabsContentProps & { class?: HTMLAttributes["class"] }
>();
const delegatedProps = computed(() => {
const { class: _, ...delegated } = props;
return delegated;
});
</script>
<template>
<TabsContent
data-slot="tabs-content"
:class="cn('flex-1 outline-none', props.class)"
v-bind="delegatedProps"
>
<slot />
</TabsContent>
</template>