| 123456789101112131415161718 |
- /**
- * Author: yang jian fei
- * Email: 1294485765@qq.com
- * Created Date: Tuesday, February 22nd 2022, 6:27:44 pm
- * Modified By: yang jian fei
- * Desc: desc
- * Copyright (c) 2022 瑞为
- */
- import emitter from 'tiny-emitter/instance'
- export default {
- $on: (...args) => emitter.on(...args),
- $once: (...args) => emitter.once(...args),
- $off: (...args) => emitter.off(...args),
- $emit: (...args) => emitter.emit(...args),
- }
|