Vue.js 2.0は、孫から祖父母のコンポーネントにイベントを発行しないようです。
Vue.component('parent', {
template: '<div>I am the parent - {{ action }} <child @eventtriggered="performAction"></child></div>',
data(){
return {
action: 'No action'
}
},
methods: {
performAction() { this.action = 'actionDone' }
}
})
Vue.component('child', {
template: '<div>I am the child <grand-child></grand-child></div>'
})
Vue.component('grand-child', {
template: '<div>I am the grand-child <button @click="doEvent">Do Event</button></div>',
methods: {
doEvent() { this.$emit('eventtriggered') }
}
})
new Vue({
el: '#app'
})
このJsFiddleは、問題https://jsfiddle.net/y5dvkqbd/4/を解決しますが、2つのイベントを発行することによって解決します。
- 孫からミドルコンポーネントまで
- 次に、中間コンポーネントから祖父母に再び放出します
この中間イベントを追加することは、反復的で不必要に思えます。私が知らない祖父母に直接放出する方法はありますか?