mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-02 09:26:57 +00:00
Enabled option to add bulk add user with comma separated emails re #300 Signed-off-by: Pranav C <61551451+pranavxc@users.noreply.github.com>
10 lines
135 B
JavaScript
10 lines
135 B
JavaScript
import Vue from 'vue';
|
|
|
|
const GlobalPlugins = {
|
|
install(v) {
|
|
v.prototype.$eventBus = new Vue();
|
|
},
|
|
};
|
|
|
|
Vue.use(GlobalPlugins);
|