Files
better-auth/examples/nuxt-example/components/ui/calendar/CalendarGridHead.vue
2024-09-26 17:09:00 +03:00

13 lines
335 B
Vue

<script lang="ts" setup>
import type { HTMLAttributes } from 'vue'
import { CalendarGridHead, type CalendarGridHeadProps } from 'radix-vue'
const props = defineProps<CalendarGridHeadProps & { class?: HTMLAttributes['class'] }>()
</script>
<template>
<CalendarGridHead v-bind="props">
<slot />
</CalendarGridHead>
</template>