vue的eventBus

首先在main.js中

Vue.prototype.$eventBus = new Vue()

A组件中通过触发事件或者其他什么,然后发射数据

this.$eventBus.$emit('key','data-1232131232132131232');

 

B组件中接收A组件的数据

this.$eventBus.$on('key',function(params){ console.log(params); // data-1232131232132131232 });

 

posted @ 2018-03-14 17:10  黑夜蓝天  阅读(1814)  评论(0编辑  收藏  举报