Files
better-auth/examples/nuxt-example/components/ui/calendar/CalendarGridBody.vue
2024-09-27 13:36:20 +03:00

12 lines
257 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>