main.js文件添加如下:
new Vue({
router,
render: h => h(App),
data: {
eventHub: new Vue()
}
}).$mount('#app');
父組件:
監聽事件:
this.$root.eventHub.$on('cart.add', (target) => {
this._drop(target);
});
子組件:
觸發事件:
this.$root.eventHub.$emit('cart.add', event.target);