feat: add shadcn

This commit is contained in:
2026-01-31 00:00:46 +08:00
parent bad60a8ee5
commit 5807fcad48
36 changed files with 992 additions and 22 deletions

View File

@@ -0,0 +1,15 @@
<script lang="ts" setup>
import type { CalendarGridBodyProps } from "reka-ui"
import { CalendarGridBody } from "reka-ui"
const props = defineProps<CalendarGridBodyProps>()
</script>
<template>
<CalendarGridBody
data-slot="calendar-grid-body"
v-bind="props"
>
<slot />
</CalendarGridBody>
</template>