vue-functional-calendar
vue-functional-calendar copied to clipboard
newCurrentDate property does not work
hi, I need to set current-day of my calendar to a fixed timezone date and the newCurrentDate property doesn't work as it is supposed to.
here is my code example
<functional-calendar
ref="selectDate"
v-model="calendarData"
:is-date-picker="true"
date-format="mm/dd/yyyy"
:limits="limits"
:new-current-date="new Date(2021, 10, 11)" // doesn't work
@choseDay="handleClickDay"
></functional-calendar>