Files
Caramel-CRM/resources/js/components/ui/calendar/CalendarGridHead.vue
T

13 lines
278 B
Vue
Raw Normal View History

2025-10-20 08:57:51 +02:00
<script lang="ts" setup>
import type { CalendarGridHeadProps } from "reka-ui"
import { CalendarGridHead } from "reka-ui"
const props = defineProps<CalendarGridHeadProps>()
</script>
<template>
<CalendarGridHead v-bind="props">
<slot />
</CalendarGridHead>
</template>