Files
simrsx-fe/app/components/pub/ui/calendar/CalendarGridBody.vue
2025-08-07 14:45:37 +07:00

13 lines
282 B
Vue

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