30 lines
759 B
Vue
30 lines
759 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
|
|
:class="
|
|
cn(
|
|
'mt-2 ring-offset-background focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2',
|
|
props.class,
|
|
)
|
|
"
|
|
v-bind="delegatedProps"
|
|
>
|
|
<slot />
|
|
</TabsContent>
|
|
</template>
|