子组件与子组件通讯:
例子子组件1 要与子组件2 通讯步骤1 : 在父组件新建一个 vue 对象 : const eventHub = new Vue()
步骤2 : 子组件1 发起事件 :this.$root.eventHub.$emit('cart.add', event.target) ;
cart.add事件名称 , event.target 事件参数步骤3 : 子组件2接受事件,做出相应:
created() { this.$root.eventHub.$on('cart.add', this.drop) }, methods: { drop(el) {.....做点什么
} }