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',() => {});
Source:stackexchange.com