shadcn-vue/apps/www/registry/new-york/example/VCalendarDemo.vue
2024-11-21 11:52:31 +08:00

11 lines
236 B
Vue

<script setup lang="ts">
import { Calendar } from '@/lib/registry/new-york/ui/v-calendar'
import { ref } from 'vue'
const date = ref(new Date())
</script>
<template>
<Calendar v-model="date" class="rounded-md border" />
</template>