14 lines
358 B
Vue
14 lines
358 B
Vue
<script lang="ts" setup>
|
|
import type { CalendarGridHeadProps } from "reka-ui"
|
|
import type { HTMLAttributes } from "vue"
|
|
import { CalendarGridHead } from "reka-ui"
|
|
|
|
const props = defineProps<CalendarGridHeadProps & { class?: HTMLAttributes["class"] }>()
|
|
</script>
|
|
|
|
<template>
|
|
<CalendarGridHead v-bind="props">
|
|
<slot />
|
|
</CalendarGridHead>
|
|
</template>
|