p-honggang.li
9 天以前 bd125eecd57d2f4e559c6170d20157591300fe3d
1
2
3
4
5
6
7
8
9
import mitt from 'mitt'
 
const instance = mitt()
const eventBus = {}
eventBus.$on = instance.on
eventBus.$off = instance.off
eventBus.$emit = instance.emit
 
export default eventBus