mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-21 02:36:39 +08:00
6 lines
149 B
JavaScript
6 lines
149 B
JavaScript
// 导入mitt包
|
|
import mitt from 'mitt'
|
|
// 创建EventBus实例对象
|
|
const bus = mitt()
|
|
// 共享出eventbus的实例对象
|
|
export default bus |