eventBus.js 438 B

123456789101112131415161718
  1. /**
  2. * Author: yang jian fei
  3. * Email: 1294485765@qq.com
  4. * Created Date: Tuesday, February 22nd 2022, 6:27:44 pm
  5. * Modified By: yang jian fei
  6. * Desc: desc
  7. * Copyright (c) 2022 瑞为
  8. */
  9. import emitter from 'tiny-emitter/instance'
  10. export default {
  11. $on: (...args) => emitter.on(...args),
  12. $once: (...args) => emitter.once(...args),
  13. $off: (...args) => emitter.off(...args),
  14. $emit: (...args) => emitter.emit(...args),
  15. }