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