A date picker for vue2.x support multi selection
npm install vue-multi-date-picker
bash
clone
git clone git@github.com:zhaokuohaha/vue-multi-date-picker.git
cd vue-multi-date-picker
install dependencies
npm install
serve with hot reload at localhost:8080
npm run dev
build for production with minification
npm run build
`
Property
|property|type|defaults|comment|
|---|---|---|---|
|model|Array (multi = true) , Date (multi = false)|- |the model of date picker|
|multi| Boolean| true |use multi select |
|disp| Array|['日', '一', '二', '三', '四', '五', '六','年', '月', '取消', '确定']| Customize display text. The order of array must strict |
|lang| String | 'zh' | Set to 'en' to translate to english |
|format| Function | function (date) { return date.toLocaleDateString(); } | Accepts a function with a date argument and returns a string |
|always-display| Boolean | false | Always display the date picker |
Usage
> Notice: selected dates are UTC formatted
$3
1. Copy /src/lib/multiDatePicker.vue to your project
2. Use as component
`html
`
$3
1. Install
`shell
npm install -S vue-multi-date-picker
`
2. Use plugin
`js
// main.js
import mDatePicker from 'vue-multi-date-picker'
// ...
Vue.use(mDatePicker)
`
`html
``