Alejándose de this.$root.$on y this.$root.$off ¿Docs dice que use mitt pero no funciona para Vue2?
Componente uno
mounted() { emitter.on('doThis', (id) => this.doThis(id)); } destroyed() { emitter.off('doThis', (id) => this.doThis(id)) } methods: { doThis(id) { console.log(id) } } Component Two handleClick() { emitter.emit('doThis', this.item.id); }