[Vuejs]-How can I access the data elements of "calendarEvents" through the "addEventListener"?

0👍

You don’t need to try to leverage the DOM here, you can use the events that the calendar provides you. You can use the @mousemove:(day/time/interval)="func" pattern:

@mousemove:day="mouseover"

Leave a comment