summaryrefslogtreecommitdiff
path: root/app/src/main.ts
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main.ts')
-rw-r--r--app/src/main.ts13
1 files changed, 8 insertions, 5 deletions
diff --git a/app/src/main.ts b/app/src/main.ts
index ce30a3f..59e02a2 100644
--- a/app/src/main.ts
+++ b/app/src/main.ts
@@ -1,6 +1,7 @@
import { createApp } from 'vue'
import App from './App.vue'
import router from './router';
+import store from "./store";
import { IonicVue } from '@ionic/vue';
@@ -24,9 +25,11 @@ import '@ionic/vue/css/display.css';
import './theme/variables.css';
const app = createApp(App)
- .use(IonicVue)
- .use(router);
-
+ .use(IonicVue)
+ .use(router);
+
+app.use(store);
+
router.isReady().then(() => {
- app.mount('#app');
-}); \ No newline at end of file
+ app.mount('#app');
+});