13 lines
278 B
Vue
13 lines
278 B
Vue
<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>
|