It seems that Vue.js 2.0 doesn’t emit events from a grand child to his grand parent component.
JavaScript
x
27
27
1
Vue.component('parent', {
2
template: '<div>I am the parent - {{ action }} <child @eventtriggered="performAction"></child></div>',
3
data(){
4
return {
5
action: 'No action'
6
}
7
},
8
methods: {
9
performAction() { this.action = 'actionDone' }
10
}
11
})
12
13
Vue.component('child', {
14
template: '<div>I am the child <grand-child></grand-child></div>'
15
})
16
17
Vue.component('grand-child', {
18
template: '<div>I am the grand-child <button @click="doEvent">Do Event</button></div>',
19
methods: {
20
doEvent() { this.$emit('eventtriggered') }
21
}
22
})
23
24
new Vue({
25
el: '#app'
26
})
27
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
1
2
1
this.$parent.$emit("submit", {somekey: somevalue})
2
Much cleaner and simpler.