UNPKG

fcc-core

Version:

Fusion communication center.

17 lines (16 loc) 326 B
// 事件总线 import Vue from 'vue' class EventBus { constructor () { this._eventBus = null } get $bus () { if (!this._eventBus) { this._eventBus = new Vue() } return this._eventBus } } const _EventBus = new EventBus() export * from './eventTypes' export default _EventBus.$bus