Sink/components/ui/calendar/CalendarGridHead.vue
2024-05-25 08:09:30 +08:00

11 lines
255 B
Vue

<script lang="ts" setup>
import { CalendarGridHead, type CalendarGridHeadProps } from 'radix-vue'
const props = defineProps<CalendarGridHeadProps>()
</script>
<template>
<CalendarGridHead v-bind="props">
<slot />
</CalendarGridHead>
</template>