Datepicker
A datepicker Vue component. Compatible with Vue 2.x. Works nice on mobile devices.
Install
- Copy TouchDatePicker.vue component into your project
- Install moment:
npm install moment@^2.24.0 --save
If you want to use vee-validate in your project:
- Install vee-validate:
npm install vee-validate@^2.0.6 --save
then add this code into you main file:
If you don't want to use vee-validate in your project:
- Remove
v-validate="vValidate"
from TouchDatePicker.vue file
Usage
Using v-model
Emits events
Full example
Available props
Prop | Type | Default | Description |
---|---|---|---|
value | Date|String | Date value of the datepicker | |
name | String | Input name property | |
id | String | Input id | |
format-date | String | DD MMMM YYYY | Date formatting string |
language | String | en | Translation language used by moment |
v-validate | Object | Validation rules used by vee-validate | |
input-class | String|Object | CSS class applied to the input el | |
placeholder | String | Input placeholder text | |
data-vv-as | String | See vee-validate: Errors localization | |
max | String | Max calendar date | |
min | String | Min calendar date |
Events
You can emit any js event as you would do on a DOM input