# vue-datepicker calendar and datepicker component with material design for Vue.js # Demo The demo page is [HERE](http://hilongjw.github.io/vue-datepicker/demo.html). ![Screenshot](screenshot.png) # Requirements - [Vue.js](https://github.com/yyx990803/vue) `^1.0.0` & `^2.0.0` - [moment](https://github.com/moment/moment) `^2.11.1` # Instllation ## npm ```shell $ npm install vue-datepicker ``` # Usage ```html ``` # API - Option * type ``` type: 'day' // 'min', 'multi-day' ``` * format ``` format: 'YYYY-MM-DD HH:mm' ``` * placeholder ``` placeholder: 'when?' ``` * week ``` week: ['Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa', 'Su'] ``` * month ``` month: ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August','September', 'October', 'November', 'December'] ``` * inputStyle ``` inputStyle: { 'display': 'inline-block', 'padding': '6px', 'line-height': '22px', 'font-size': '16px', 'border': '2px solid #fff', 'box-shadow': '0 1px 3px 0 rgba(0, 0, 0, 0.2)', 'border-radius': '2px', 'color': '#5F5F5F' } ``` * color ``` color: { header: '#ccc', headerText: '#f00' } ``` * buttons ``` buttons: { ok: 'OK', cancel: 'Cancel' } ``` * animate ``` overlayOpacity: 0.5, // 0.5 as default dismissible: true // as true as default ``` - limit * from sometime to sometime(when from/to is empty, days before/after end/start time will be available) ```javascript limit: { type:'fromto', from:'2016-01-10', to:'2016-01-30' } ``` * weekdays ```javascript limit:{ type: 'weekday', available: [1, 2, 3, 4, 5] } ``` ### prop * Vue 1.0 ```javascript time: '' // string ``` ```html ``` * Vue 2.0 ```javascript date: { time: '' // string } ``` ```html ``` # License [The MIT License](http://opensource.org/licenses/MIT)