Files
nocodb/packages/nc-gui/plugins/globalEventBus.js
2021-07-19 16:30:37 +05:30

10 lines
131 B
JavaScript

import Vue from 'vue'
const GlobalPlugins = {
install (v) {
v.prototype.$eventBus = new Vue()
}
}
Vue.use(GlobalPlugins)