[Vuejs]-VueJS events between two separate components

2👍

You need to use a global EventBus:

in main.js:

window.EventBus = new Vue();

and then in your components:

EventBus.$emit('items-updated');

EventBus.$on('items-updated',() => {});
👤Tomer

Leave a comment