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 @   黑夜蓝天  阅读(1815)  评论(0编辑  收藏  举报
努力加载评论中...
点击右上角即可分享
微信分享提示