1.0.0 • Published 6 years ago

vue-calendar-basic v1.0.0

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

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>