In the data section of your Vue instance, you reference a variable app. Example:
{
text: "Delete",
onClick: function(args) {
var e = args.source;
app.scheduler.events.remove(e);
app.scheduler.message("Deleted.");
}
}
To what does that refer.. It is not defined in the code... Thanks in advance