In my current project, I am utilizing https://www.npmjs.com/package/vue-full-calendar. However, I have encountered an issue when trying to receive callbacks or triggers from the next and previous buttons on the calendar.
My backend API is structured around receiving events based on a monthly parameter. In Vuejs, I have request methods that accept parameters and return events. For the current month, I simply call the fetch method within the created() function, retrieve the events, and assign them to the calendar like so:
axios.get(/fetch/events?month=6).then(e => this.events = this.responseToEvents(e.data)).catch( e => ...).
Now, I need to figure out how to detect when a user clicks on the next or previous buttons in order to trigger a re-fetch of events with the appropriate month property. So far, I haven't found a solution that doesn't involve using jQuery.