vue用法
// main
Vue.prototype.eventBus = new Vue()
// comp1
this.eventBus.$emit('handle','value')
// comp2
this.eventBus.$on('handle', callback)
2022/9/12...小于 1 分钟
// main
Vue.prototype.eventBus = new Vue()
// comp1
this.eventBus.$emit('handle','value')
// comp2
this.eventBus.$on('handle', callback)