标签:bsp eve data vue this get route add 组件
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);
标签:bsp eve data vue this get route add 组件
原文地址:http://www.cnblogs.com/jhuang-com/p/6810283.html