I am trying to create v-calendar with vuetify. The problem is when i use @change event it does not includes date range viewed on crud like fullcalendar. How can i get those days?
<v-calendar
ref="calendar"
v-model="focus"
:events="events"
@change="updateRange"
></v-calendar>
methot
updateRange ({ start, end }) {
// start.date and end.date gives first/end day of the month instate of range of crud
this.events = this.getEvents(start.date, end.date)
)}