vue-datetime
Mobile friendly datetime picker for Vue. Supports date, datetime and time modes, i18n and disabling dates.
NOTICE: This README is related to next version (1.x) of vue-datetime.
TODO
v1.x currently support most of v0.x functionality but it's still behind.
Old features not yet implemented:
- Disabled dates
- Time picker (Not sure if it will be implemented)
Installation
Bundler (Webpack, Rollup...)
Or
weekstart is optional, is used to get the first day of the week.
Register
Register manually
Global
Local
Browser
Download vue, luxon, weekstart and vue-datetime or use a CDN like unpkg.
weekstart is optional, is used to get the first day of the week.
Usage
Minimal
Setup
Parameters
Parameter | Type | Default | Description |
---|---|---|---|
v-model (required) | ISO 8601 String |
- | Datetime. |
type | String |
date |
Picker type. date or datetime. |
input-class | String |
'' |
Class for the input. |
value-zone | String |
UTC |
Time zone for the value. |
zone | String |
local |
Time zone for the picker. |
format | String |
DateTime.DATE_MED or DateTime.DATETIME_MED |
Input date format. |
phrases | Object |
{ok: 'Ok', cancel: 'Cancel'} |
Phrases. |
hour-step | Number |
1 |
Hour step. |
minute-step | Number |
1 |
Minute step. |
min-datetime | ISO 8601 String |
null |
Minimum datetime. |
max-datetime | ISO 8601 String |
null |
Maximum datetime. |
auto | Boolean |
false |
Auto continue/close on select. |
week-start | Number |
auto from locale if weekstart is available or 1 |
First day of the week. 1 is Monday and 7 is Sunday. |
Input inherits all props not defined above but style
and class
will be inherited by root element.
Internationalization
Date internationalization depends on luxon. Set the default locale.
Events
Component emits the input
event to work with v-model
. More info.
Also, input text inherits all component events.
Theming
Theming is supported by overwriting CSS classes.
Development
Launch lint and tests
Launch visual tests
Build
Bundle the js and css to the dist
folder: