DEV Community

Discussion on: communication between components in Vue

Collapse
 
sotaan profile image
David Mamane

Don't forget to unbind the handler before destroying the component.
In your case:

beforeDestroy() {
eventBus.$off('ageWasEdited');
}

Also, you'd better refactor your handler in a method to unbind it specifically.