15 lines
295 B
Vue
15 lines
295 B
Vue
<script lang="ts" setup>
|
|
import { CalendarGridBody, type CalendarGridBodyProps } from 'reka-ui'
|
|
|
|
const props = defineProps<CalendarGridBodyProps>()
|
|
</script>
|
|
|
|
<template>
|
|
<CalendarGridBody
|
|
data-slot="calendar-grid-body"
|
|
v-bind="props"
|
|
>
|
|
<slot />
|
|
</CalendarGridBody>
|
|
</template>
|