calendar

Custom select day style

Custom select day style

Загрузка превью…

src/calendar/c-calendar-5.vue

<script setup lang="ts">
import { ref } from "vue"
import { Card, CardContent } from "@/components/ui/card"
import { Calendar as CCalendar } from "@/components/ui/calendar"

const date = ref<Date | undefined>(new Date(2026, 0, 15))
</script>

<template>
  <Card class="p-0">
    <CardContent class="p-0">
      <CCalendar mode="single" v-model="date" day-button-class="!rounded-full" />
    </CardContent>
  </Card>
</template>

Установка

npx shadcn-vue@latest add https://revueui.rootapi.dev/r/c-calendar-5.json

Зависимости реестра

Источник: порт из ReUI (Keenthemes, MIT)