Gathering detailed insights and metrics for vue2-datepicker-updated-v2
Gathering detailed insights and metrics for vue2-datepicker-updated-v2
Gathering detailed insights and metrics for vue2-datepicker-updated-v2
Gathering detailed insights and metrics for vue2-datepicker-updated-v2
npm install vue2-datepicker-updated-v2
Typescript
Module System
Node Version
NPM Version
Vue (83.22%)
JavaScript (16.29%)
HTML (0.49%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
179 Commits
1 Branches
1 Contributors
Updated on Nov 22, 2024
Latest Version
1.0.16
Package Id
vue2-datepicker-updated-v2@1.0.16
Unpacked Size
1.21 MB
Size
198.92 kB
File Count
19
NPM Version
6.14.12
Node Version
14.16.1
Published on
Nov 19, 2024
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
3
26
A Datepicker Component For Vue2
Forked from vue2-datepicker
1$ npm install vue2-datepicker-updated-v2 --save
1<script> 2import DatePicker from 'vue2-datepicker-updated-v2' 3 4export default { 5 components: { DatePicker }, 6 data() { 7 return { 8 time1: '', 9 time2: '', 10 shortcuts: [ 11 { 12 text: 'Today', 13 start: new Date(), 14 end: new Date() 15 } 16 ] 17 } 18 } 19} 20 21</script> 22 23<template> 24 <div> 25 <date-picker v-model="time1" :first-day-of-week="1"></date-picker> 26 <date-picker v-model="time2" range :shortcuts="shortcuts"></date-picker> 27 </div> 28</template>
Prop | Type | Default | Description |
---|---|---|---|
type | String | 'date' | select datepicker or datetimepicker(date/datetime) |
range | Boolean | false | if true, the type is daterange or datetimerange |
format | String | yyyy-MM-dd | Date formatting string |
custom-formatter | function | null | custom Date display |
lang | String/Object | zh | Translation (en/zh/es/pt-br/fr/ru/de/it/cs)(custom) |
confirm | Boolean | false | if true, need click the button to change the value |
disabled | Boolean | false | Disable the component |
editable | Boolean | false | if true, user can type it(only the range is false) |
placeholder | String | input placeholder text | |
width | String/Number | 210 | input size |
disabled-days | Array | [] | Days in YYYY-MM-DD format to disable |
not-before | String/Date | '' | Disable all dates before new Date(not-before) |
not-after | String/Date | '' | Disable all dates after new Date(not-after) |
shortcuts | Boolean/Array | true | the shortcuts for the range picker |
time-picker-options | Object | {} | set timePickerOptions(start, step, end) |
minute-step | Number | 0 | if > 0 don't show the second picker(0 - 60) |
first-day-of-week | Number | 7 | set the first day of week (1-7) |
input-class | String | 'mx-input' | the input class name |
confirm-text | String | 'OK' | the default text to display on confirm button |
range-separator | String | '~' | the range separator text |
defaultDate | Date | new Date() | if given, then picker will open in the respective date's month. |
1{ 2 days: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'], 3 months: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], 4 pickers: ['next 7 days', 'next 30 days', 'previous 7 days', 'previous 30 days'], 5 placeholder: { 6 date: 'Select Date', 7 dateRange: 'Select Date Range' 8 } 9}
Prop | Type | Description |
---|---|---|
text | String | Text |
start | Date | Start Date |
end | Date | End Date |
Prop | Type | Description |
---|---|---|
start | String | startTime (eg '00:00') |
step | String | stepTime (eg '00:30') |
end | String | endTime (eg '23:30') |
Name | Description | Callback Arguments |
---|---|---|
change | When user select date | the currentValue |
confirm | When user click 'OK' button | the currentValue |
Copyright (c) 2017-present xiemengxiong
No vulnerabilities found.
No security vulnerabilities found.