120k

Range Calendar

Presents a calendar view tailored for selecting date ranges.

Installation

pnpm dlx shadcn@latest add @force-ui-vue/range-calendar

About

The <RangeCalendar /> component is built on top of the Reka UI Range Calendar component, which uses the @internationalized/date package to handle dates.

If you're looking for a normal calendar, check out the Calendar component.

Usage

<script setup lang="ts">
import { RangeCalendar } from "@/components/ui/range-calendar"
</script>
 
<template>
  <RangeCalendar />
</template>