Skip to content
Advertisement

VueJs 2.0 emit event from grand child to his grand parent component

It seems that Vue.js 2.0 doesn’t emit events from a grand child to his grand parent component.

JavaScript

This JsFiddle solves the issue https://jsfiddle.net/y5dvkqbd/4/ , but by emtting two events:

  • One from grand child to middle component
  • Then emitting again from middle component to grand parent

Adding this middle event seems repetitive and unneccessary. Is there a way to emit directly to grand parent that I am not aware of?

Advertisement

Answer

NEW ANSWER (Nov-2018 update)

I discovered that we could actually do this by leveraging the $parent property in the grand child component:

JavaScript

Much cleaner and simpler.

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement