11
VueJs 2.0は、孫から祖父母コンポーネントにイベントを発行します
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 …