refactor UI layout

This commit is contained in:
geoffrey45
2022-03-06 10:27:01 +03:00
parent 90f8703a8e
commit 7f2102f931
21 changed files with 214 additions and 164 deletions
+3
View File
@@ -2,9 +2,12 @@ import { createApp } from "vue";
import App from "./App.vue";
import "./registerServiceWorker";
import router from "./router";
import { createPinia } from 'pinia'
import "../src/assets/css/global.scss";
const app = createApp(App);
app.use(router);
app.use(createPinia())
app.mount('#app');