11
VueJs 2.0, büyük çocuktan büyük ebeveyn bileşenine olay yayıyor
Görünüşe göre Vue.js 2.0, olayları büyük bir çocuktan büyük ebeveyn bileşenine yaymıyor. 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 …