[Vuejs]-Figuring out which month the user is in while using v-calender

1👍

https://github.com/nathanreyes/v-calendar/issues/125

This Link helped me to understand and use the @update:page and @update:fromPage attributes of v-calender.This returns a list of of the month and year as the user scrolls through the calendar.

-1👍

Use v-date-picker with mode=’range’ to get the selected date by user. This wrapper comes with v-calendar. Use the users selected date using v-model to work for specific changes as date changes.

<v-date-picker
  mode='range'
  v-model='range'
/>

Leave a comment