vue-calendar-basic
v1.0.0
Published
A Vue.js component that displays a calendar
Downloads
2
Readme
vue-calendar-basic
A Vue component that shows a calendar.
A very basic and lightweight calendar!
Installation
npm i --save-dev vue-calendar-basic
Browser
Include the script file, then install the component with Vue.use(VueCalendar);
e.g.:
<script type="text/javascript" src="node_modules/vuejs/dist/vue.min.js"></script>
<script type="text/javascript" src="node_modules/vue-calendar-simple/dist/vue-calendar.min.js"></script>
<script type="text/javascript">
Vue.use(VueCalendar);
</script>
Module
import VueCalendar from 'vue-calendar';
Usage
Once installed, it can be used in a template as simply as:
<vue-calendar></vue-calendar>