Files
milsim-site-v4/ui/src/components/ui/calendar/CalendarGridHead.vue
2025-12-11 11:00:02 -05:00

16 lines
356 B
Vue

<script setup>
import { CalendarGridHead } from "reka-ui";
const props = defineProps({
asChild: { type: Boolean, required: false },
as: { type: null, required: false },
class: { type: null, required: false },
});
</script>
<template>
<CalendarGridHead data-slot="calendar-grid-head" v-bind="props">
<slot />
</CalendarGridHead>
</template>