Package Exports
- v-calendar-ssr-mod
- v-calendar-ssr-mod/lib/cjs/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (v-calendar-ssr-mod) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
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-mod';
export default {
components: {
DatePicker,
},
setup() {
return {
date: new Date(),
};
},
}
</script>