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