shadcn-vue/apps/www/src/lib/registry/new-york/example/CalendarDemo.vue
2024-10-14 19:48:05 +08:00

12 lines
387 B
Vue

<script setup lang="ts">
import { Calendar } from '@/lib/registry/new-york/ui/calendar'
import { type DateValue, getLocalTimeZone, today } from '@internationalized/date'
import { type Ref, ref } from 'vue'
const value = ref(today(getLocalTimeZone())) as Ref<DateValue>
</script>
<template>
<Calendar v-model="value" :weekday-format="'short'" class="rounded-md border" />
</template>