shadcn-vue/apps/www/registry/default/example/CalendarDemo.vue
2024-11-21 11:52:31 +08:00

12 lines
386 B
Vue

<script setup lang="ts">
import { Calendar } from '@/lib/registry/default/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>