mirror of
https://github.com/ZeroCatDev/ClassworksKV.git
synced 2025-10-22 02:03:11 +00:00
26 lines
643 B
Vue
26 lines
643 B
Vue
<script setup>
|
|
import { reactiveOmit } from "@vueuse/core";
|
|
import { TabsContent } from "reka-ui";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
const props = defineProps({
|
|
value: { type: [String, Number], required: true },
|
|
forceMount: { type: Boolean, required: false },
|
|
asChild: { type: Boolean, required: false },
|
|
as: { type: null, required: false },
|
|
class: { type: null, required: false },
|
|
});
|
|
|
|
const delegatedProps = reactiveOmit(props, "class");
|
|
</script>
|
|
|
|
<template>
|
|
<TabsContent
|
|
data-slot="tabs-content"
|
|
:class="cn('flex-1 outline-none', props.class)"
|
|
v-bind="delegatedProps"
|
|
>
|
|
<slot />
|
|
</TabsContent>
|
|
</template>
|