Add district header on root page
This commit is contained in:
parent
bfecae7d61
commit
5842b6251d
10 changed files with 124 additions and 157 deletions
|
|
@ -1,5 +1,6 @@
|
|||
import { createApp } from "vue";
|
||||
import { createHead } from "@vueuse/head";
|
||||
import { createPinia } from "pinia";
|
||||
import "@/gen/custom-icons.scss";
|
||||
import "@/style/rmo.scss";
|
||||
import router from "@/rmo/router";
|
||||
|
|
@ -7,7 +8,9 @@ import App from "@/rmo/App.vue";
|
|||
|
||||
const app = createApp(App);
|
||||
const head = createHead();
|
||||
const pinia = createPinia();
|
||||
|
||||
app.use(head);
|
||||
app.use(pinia);
|
||||
app.use(router);
|
||||
app.mount("#app");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue