vue通信方式 手写事件总线(发布——订阅) class EventEmitter { constructor() { // 事件对象,存放订阅的名字和事件 this.events = {}; } // 订阅事件的方法 on(eventName,callback) { &nb...