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.
- [Vuejs]-Filter datatable in vuetify using daepicker?
- [Vuejs]-VueJS Router-link with a href not working properly
-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'
/>
Source:stackexchange.com