hub.js 139 B

1234567891011
  1. import Vue from 'vue'
  2. export default {
  3. install (vue) {
  4. const hub = new Vue()
  5. vue.prototype.$hub = hub
  6. vue.hub = hub
  7. },
  8. }