datepicker component for Vue.js
npm install vue-date> datepicker component for Vue.js, already support Vue.js 2.x, the Vue.js 1.x version is on branch vue-1.x(not maintain).
Live Demo is here
>npm install vue-date --save
#### use with single .vue file:
``html
`
#### use in browser:
`html`
//index.html
#### language
###### Type: Stringen
###### Default: en(English)
###### Optional: , zh-cn(Chinese), uk(Ukrainsk), es(Spanish)en
The language type. Support (English), zh-cn(Chinese), uk(Ukrainsk) and es(Spanish) now.
#### min
###### Type: String1970-01-01
###### Default:
The minimum date.
`html`
//pass string
//or pass variable
#### max
###### Type: String3016-01-01
###### Default: min
The maximum date. Usage is same of .
#### range
###### Type: Booleanfalse
###### Default: true
Use range mode or not. If pass , the binding value should be an Array containg the range start and range end. eg. ['1970-01-01', '3016-01-01']`