feat: vue router and quality of life icons
TS Lint / Oxlint (push) Successful in 48s
TS Lint / TypeScript (push) Successful in 56s
TS Lint / ESLint (push) Successful in 59s

This commit is contained in:
2026-07-14 12:32:41 +02:00
parent 531b976b87
commit 210f7c5cf4
13 changed files with 270 additions and 112 deletions
+2 -1
View File
@@ -1,6 +1,7 @@
import { createApp } from "vue";
import { createI18n } from "vue-i18n";
import App from "@/App.vue";
import router from "@/router";
import { getLang } from "@/lib/lang";
import { createPinia } from "pinia";
const en = await import("@lang/en.json");
@@ -17,4 +18,4 @@ const i18n = createI18n({
const pinia = createPinia();
createApp(App).use(i18n).use(pinia).mount("#app");
createApp(App).use(router).use(i18n).use(pinia).mount("#app");