vue-functional-calendar icon indicating copy to clipboard operation
vue-functional-calendar copied to clipboard

newCurrentDate property does not work

Open Sovai opened this issue 2 years ago • 0 comments

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>

Sovai avatar Sep 21 '21 05:09 Sovai