674 B
Executable File
674 B
Executable File
| title | description |
|---|---|
| Calendar | A date field component that allows users to enter and edit date. |
About
The Calendar component is built on top of VCalendar.
Installation
npx shadcn-vue@latest add calendar
- Install
radix-vue:
npm install radix-vue
- Copy and paste the component source files linked at the top of this page into your project.
Usage
<script setup lang="ts">
import { Calendar } from '@/components/ui/calendar'
</script>
<template>
<Calendar />
</template>