v-calendar-ssr

Fork of Nathan Reyes' <nathanreyes@me.com> calendar

Usage no npm install needed!

<script type="module">
  import vCalendarSsr from 'https://cdn.skypack.dev/v-calendar-ssr';
</script>

README

Fork of Nathan Reyes' nathanreyes@me.com VCalendar

It will not be maintained. Please, use original package v-calendar https://github.com/nathanreyes/v-calendar

Patches:

  • nuxt3 ssr support
  • only CJS lib build

VCalendar Plugin for Vue 3

A Vue plugin for attributed calendars date pickers using Vue 3, Typescript and Rollup.

Install Plugin

yarn add v-calendar-ssr@3.0.0-alpha.6-ssr

Usage

<template>
  <DatePicker v-model="date" />
</template>

<script>
  import { DatePicker } from 'v-calendar-ssr';

  export default {
    components: {
      DatePicker,
    },
    setup() {
      return {
        date: new Date(),
      };
    },
  }
</script>