Open rithvikvibhu opened 6 years ago
I solved this issue by passing eventSource in config data `
data() {
return {
config: {
eventSource: [...]
}
}
`
I have encountered this issue, moving the eventSources into config worked too... But i do have another issue. If i load the events on the page, and change the page to something else, and go back on the calendar page, the events are duplicated... Any1 encountered this issue? Thanks
Hi,
I have routing something like this:
And an event source in
data
:This works correctly the first time. Navigating to another route (
/admin/orders
) and coming back (to/admin/orders
) calls theevents
function twice. This adds on after every navigate, so I end up with 5 entries after 5 page mounts.Is this the right place for
calendarEventSources
?