Files
better-auth/examples/nuxt-example/components/ui/calendar/CalendarGridBody.vue
2024-09-26 17:09:00 +03:00

12 lines
255 B
Vue

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