Files
nocodb/packages/nc-gui/plugins/globalEventBus.js
Pranav C 12ab1d2d8a fix: Bulk add users
Enabled option to add bulk add user with comma separated emails

re #300

Signed-off-by: Pranav C <61551451+pranavxc@users.noreply.github.com>
2021-07-15 16:31:52 +05:30

10 lines
135 B
JavaScript

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