summaryrefslogtreecommitdiff
path: root/src/main.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.js')
-rw-r--r--src/main.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.js b/src/main.js
index 0aae716f..43d09b8c 100644
--- a/src/main.js
+++ b/src/main.js
@@ -6,6 +6,7 @@ import router from './router';
//Exact match alias set to support
//dotenv customizations.
import store from './store';
+import eventBus from './eventBus';
import {
AlertPlugin,
@@ -135,3 +136,4 @@ new Vue({
i18n,
render: (h) => h(App),
}).$mount('#app');
+Vue.prototype.$eventBus = eventBus;