mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-28 16:57:02 +00:00
10 lines
130 B
JavaScript
10 lines
130 B
JavaScript
import Vue from 'vue'
|
|
|
|
const GlobalPlugins = {
|
|
install(v) {
|
|
v.prototype.$eventBus = new Vue()
|
|
}
|
|
}
|
|
|
|
Vue.use(GlobalPlugins)
|