How to get all events in vuejs in fullcalendar

Viewed 1406
1 Answers

I got the answer

use ref on component

<FullCalendar schedulerLicenseKey="GPL-My-Project-Is-Open-Source" :events="events" :businessHours="businessHours" ref="calendar" />

and add this on your method

let calendarApi = this.$refs.calendar.getApi();

console.log(calendarApi.getEvents())
Related