|
@@ -2,6 +2,7 @@ import Vue from "vue";
|
|
import App from "./App.vue";
|
|
import App from "./App.vue";
|
|
import router from "./router";
|
|
import router from "./router";
|
|
import store from "./store";
|
|
import store from "./store";
|
|
|
|
+import VueBus from "vue-bus";
|
|
// import "./registerServiceWorker";
|
|
// import "./registerServiceWorker";
|
|
import "./components/registerComponents";
|
|
import "./components/registerComponents";
|
|
import "./modules/questions/component/registerComponents";
|
|
import "./modules/questions/component/registerComponents";
|
|
@@ -17,6 +18,7 @@ import "@/components/svgIcon/svgIcon";
|
|
|
|
|
|
import globalVuePlugins from "./plugins/globalVuePlugins";
|
|
import globalVuePlugins from "./plugins/globalVuePlugins";
|
|
Vue.use(globalVuePlugins);
|
|
Vue.use(globalVuePlugins);
|
|
|
|
+Vue.use(VueBus);
|
|
|
|
|
|
Vue.config.productionTip = process.env.NODE_ENV !== "production";
|
|
Vue.config.productionTip = process.env.NODE_ENV !== "production";
|
|
|
|
|