eventBus.js 320 B

123456789
  1. // see https://v3-migration.vuejs.org/breaking-changes/events-api.html#_3-x-update
  2. import emitter from 'tiny-emitter/instance'
  3. export default {
  4. $on: (...args) => emitter.on(...args),
  5. $once: (...args) => emitter.once(...args),
  6. $off: (...args) => emitter.off(...args),
  7. $emit: (...args) => emitter.emit(...args)
  8. }