3.0.0-alpha.6-ssr • Published 2 years ago

v-calendar-ssr-mod v3.0.0-alpha.6-ssr

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

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-mod';

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