This commit is contained in:
Kulbhushan Kaushik 2022-09-14 14:06:28 -04:00
parent 3edf91ae66
commit 132ffa1d2a
2 changed files with 15 additions and 6 deletions

View file

@ -1,6 +1,13 @@
import { createApp } from 'vue' import { createApp } 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';
const vueApp = createApp(App);
vueApp.use(router);
vueApp.use(store);
vueApp.mount("#app");
createApp(App).use(store).use(router).mount('#app')

View file

@ -75,4 +75,6 @@ function getNavigationMap(scenario, currentRoute) {
.filter(x => x.filter === true || x.filter === undefined); .filter(x => x.filter === true || x.filter === undefined);
return matchedQueryValue[0]; return matchedQueryValue[0];
} }
export default router;