15 lines
283 B
Vue
15 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>
|