Is it possible to use the Calendar .move method on the DatePicker? Can't find any documentation or issues related.
Yes you'll need to access the calendar ref inside it though.
<v-date-picker v-model="date" ref="picker" />
/// Somewhere in your methods, move to the next month
this.$refs.picker.$refs.calendar.move(1)
I'll probably add some transparent wrapper calls to remove the extra layer calls.
@nathanreyes - This works. Thank you!
@nathanreyes what about the focusDate method?
You can access it the same way.
Most helpful comment
Yes you'll need to access the calendar ref inside it though.
I'll probably add some transparent wrapper calls to remove the extra layer calls.