agep-cargo/src/components/ui/calendar/CalendarGridBody.vue
2025-10-13 05:27:04 +02:00

14 lines
283 B
Vue

<script setup>
import { CalendarGridBody } from "reka-ui";
const props = defineProps({
asChild: { type: Boolean, required: false },
as: { type: null, required: false },
});
</script>
<template>
<CalendarGridBody v-bind="props">
<slot />
</CalendarGridBody>
</template>