Package Exports
- vuetify-date-selection
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (vuetify-date-selection) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
vuetify-date-selection
- A Simple date input selection with two date-picker based on Vuetify.
- Return array of date
Installation
npm install vuetify-date-selection --save
Usage
any.vue
<v-date-selection v-model="date_input"></v-date-selection>
import VDateSelection from 'vuetify-date-selection'
...
components:{ VDateSelection },
...
Props & Slot
- Props
Name | Type | Default | Description |
---|---|---|---|
range | Boolean | false | IsRange Mode |
start-text | String | "Start" | Show on start date is not selected |
end-text | String | "End" | Show on end date is not selected |
- Props from Vuetify Date-picker (Refer Vuetify Documentation)
Name |
---|
color |
event-color |
locale |
dark |
light |
first-day-of-week |
header-color |
- Slot
Slot | Description |
---|---|
default | Displayed below the selection, can be used for example for adding action button (OK and Cancel) |
divider | Displayed between two date-pickers |