Fullcalendar 不工作其他方法 Vue JS

Fullcalendar Not Working Other Methods Vue JS

我正在使用 Fullcalendar Vue。我想点击相关事件并采取行动。我可以用 Watch 或 运行 a Function 捕捉它,但我不能出去。有什么问题?

eventClick: function(info){
   console.log(info.event.id); // Console Log 25
   this.calendarEvent = info.event.id; // Not Write
   this.changeEventData(info.event.id); // Not Working (this.changeEventData is not a function)
}

this 对象在您的范围内不可用。您可以使用箭头函数解决此问题。

eventClick: info => {
   this.calendarEvent = info.event.id;
}