[Vuejs]-Can I send a custom event from a eventBus listener?

0👍

I would try something like this:

<quotes @quotesWereUpdated="updateMessages"></quotes>

then declare a method:

    updateMessages (data) {
      this.messages = data
    }

Leave a comment