zephyr-frontend/src/components/ui/calendar/CalendarGridHead.vue
2025-01-09 01:53:07 +08:00

12 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>