shadcn-vue/apps/www/.vitepress/theme/components/TabMarkdown.vue
2024-03-20 22:23:28 +03:30

16 lines
278 B
Vue

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