VueDayCalendar
Open Source

The Vue day picker

component that presents dates

in a calendar format.

Get Started
May 2024
SuMoTuWeThFrSa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31

You picked 2024-05-24

Installation

pnpm add vue-day-calendar dayjs

Example

<script setup lang="ts">
  import 'vue-day-calendar/style.css'
  import VueDayCalendar from 'vue-day-calendar'
</script>

<template>
  <VueDayCalendar/>
</template>