mengxiong10 / vue-datepicker-next

A datepicker / datetimepicker component for Vue3
https://mengxiong10.github.io/vue-datepicker-next/
MIT License
147 stars 34 forks source link

[Bug] Step options for time picker doesn't work. #29

Closed crypteo closed 1 year ago

crypteo commented 1 year ago

Vue2-datepicker version: 1.0.2 Vue version: 3.2.26 Browser: Any

Hey, I think there is a problem with the step options; If I use minuteStep="10", I can choose only 0 or 10 If I use minuteStep="5", I can choose 0, 5 or 55 ???

https://codesandbox.io/s/datepicker-pmmcfl

mengxiong10 commented 1 year ago

use number not string, minuteStep="5" to :minuteStep="5"

<date-picker type="time" :minuteStep="5" format="HH:mm" />