Closed dzafer closed 7 years ago
Ah it looks like there is a bug on the event watcher. I am fixing it now and will release a new version shortly.
Ok, v2.0.1 should now notice changes in the events prop and reload the new events.
Thank you. really appreciate!
Using <full-calendar ref="calendar" :events="events" ... it works if events is hardcoded in data like below
But if I try to display data from a database, e.g. using VUEX with the mounted() vue method nothing appears
If I'm hardcoding returned result in data: events, it's displayed properly {{ list }} is displayed properly
Same problem if I try to change dynamically the events source (both based in data) using
this.$refs.calendar.$emit( 'renderEvent', this.newlist, true);
Any Help Will Be Welcome