utils_vueBus.js - xinwu-yang/cube-vue GitHub Wiki

utils/vueBus.js

Vue.prototype.$bus 中央事件总线

发送事件

this.$bus.$emit(eventName, value)

接收事件

this.$bus.$on(eventName, value => {})

关闭事件

this.$bus.$off(eventName)