vue-mj-daterangepicker
Vue.js date range picker with multiples ranges and presets (vue 2.x) .
Installation
You need Vue.js version 2.0+.
1 Install via npm
2 Import and use
Props
Name | Type | Default | Description |
---|---|---|---|
locale |
String | en | set the locale ['en', 'fr] |
from |
String | null | ISO-8601 date of start range |
to |
String | null | ISO-8601 date of end range |
begin |
String | null | ISO-8601 date to display since beginning range |
past |
Boolean | true | allow/disallow user to select past dates |
future |
Boolean | true | allow/disallow user to select future dates |
panel |
String | null | choose which panel to be open by default |
panels |
Array | [ 'range', 'week', 'month', 'quarter', 'year' ] | choose which panels to be available |
yearsCount |
Number | 2 | number of past/future years to display in year panel |
theme |
Object | see customize section | customize colors |
width |
String | 'auto' | set component width |
resetTitle |
String | 'Reset' | change Reset button title |
submitTitle |
String | 'Submit' | change Submit button title |
presets |
Object | see preset section | select which presets to be available |
Customize
Presets
available presets : ['custom', 'today', 'yesterday', 'tomorrow', 'last7days', 'next7days', 'last30days', 'next30days', 'last90days', 'next90days', 'last365days', 'next365days', 'forever']
warning: forever
need begin
props to be set.
Events
This datepicker emit two events, @reset and @update
both return an object with the start and end date, plus the active panel