shadcn-vue/apps/www/registry/default/ui/calendar/CalendarGridBody.vue
2024-11-21 11:52:31 +08:00

12 lines
253 B
Vue

<script lang="ts" setup>
import { CalendarGridBody, type CalendarGridBodyProps } from 'reka-ui'
const props = defineProps<CalendarGridBodyProps>()
</script>
<template>
<CalendarGridBody v-bind="props">
<slot />
</CalendarGridBody>
</template>