Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Reference for Nuxt UI v4 (125+ components built on Reka UI + Tailwind CSS v4) including forms, overlays, and theming.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
components/calendar.md
1# Calendar23A calendar component for selecting single dates, multiple dates or date ranges.45> Based on [Reka UI Calendar](https://reka-ui.com/docs/components/calendar)67## Key Props89- `multiple`: to allow multiple selections.10- `range`: to select a range of dates.11- `color`: to change the color of the calendar.12- `variant`: to change the variant of the calendar.13- `size`: to change the size of the calendar.14- `disabled`: to disable the calendar.15- `numberOfMonths`: to change the number of months in the calendar.16- `weekNumbers`: to display week numbers (v4.4+).1718## Usage1920```vue21<UCalendar22<!-- props here -->23/>24```25