I'm currently using the Fullcalendar Vue plugin and I am trying to execute an action when clicking on a specific event. I have tried using Watch as well as running a Function, but both methods are limiting me from executing the desired action. Can you help me identify what might be causing this issue?
eventClick: function(info){
console.log(info.event.id); // This successfully logs 25 in the console
this.calendarEvent = info.event.id; // However, this line does not work as expected
this.changeEventData(info.event.id); // The following error occurs: "this.changeEventData is not a function"
}