VueDayCalendar
Open Source

Get Started

Installation

Install the following dependencies into your project using the package manager.

pnpm install vue-day-calendar dayjs

Create a vue file, and import the vue-day-calendar component.

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

<template>
  <VueDayCalendar/>
</template>
December 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