一、一种组件间通信的方式,适用于任意组件间通信。
二、建立 bus:
Vue.prototype.bus = new Vue();
三、使用 bus
- bus 上注册自定义事件
this.bus.$emit('customEvent', params);
- 任意组件监听
this.bus.$on('customEvent', function (params) {console.log(params);
});
四、建议在 beforeDestroy
钩子中,用 $off
去解绑当前组件所用到的事件
beforeDestroy() {this.bus.$off('customEvent');
}