Element time selection how to change the default time on the calendar

clipboard.png

clipboard.png

clipboard.png

picker-options disabledDate

clipboard.png

this is defined in data, but this time parameter is the local time. I want to change the current time

now it"s display 13. I want him to show it on the 14th or some other time
: default-value I assigned a millisecond but did not change the default display time

Jun.16,2021

default-value sets the year, month and day displayed in the selector panel. The default time is set through variables bound by v-model. Here, you can set dateTimeValue

during initialization.
dateTimeValue:[Date.now() + 1*24*60*60*1000,Date.now() + 8*24*60*60*1000]

this is the default display from 14 to 21. In the same way, you can set another display time

.
Menu