v-calendar-ssr-mod
v3.0.0-alpha.6-ssr
Published
Fork of Nathan Reyes' <[email protected]> calendar
Downloads
29
Maintainers
Readme
Fork of Nathan Reyes' [email protected] 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 [email protected]
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>