17 lines
322 B
Vue
17 lines
322 B
Vue
<script setup lang="ts">
|
|
import { useSlots } from 'vue'
|
|
import { TabsContent, TabsTrigger } from '@/lib/registry/default/ui/tabs'
|
|
|
|
withDefaults(defineProps<{
|
|
title?: string
|
|
}>(), {
|
|
title: '',
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<TabsContent :value="title" class="relative space-y-10">
|
|
<slot />
|
|
</TabsContent>
|
|
</template>
|