feat: toasts
TS Lint / TypeScript (push) Successful in 1m22s
TS Lint / Oxlint (push) Successful in 1m22s
TS Lint / ESLint (push) Successful in 1m28s

This commit is contained in:
2026-07-14 11:23:33 +02:00
parent 3b499ff791
commit 9f4c8776d5
8 changed files with 103 additions and 2 deletions
+4 -1
View File
@@ -2,6 +2,7 @@ import { createApp } from "vue";
import { createI18n } from "vue-i18n";
import App from "@/App.vue";
import { getLang } from "@/lib/lang";
import { createPinia } from "pinia";
const en = await import("@lang/en.json");
const fr = await import("@lang/fr.json");
@@ -14,4 +15,6 @@ const i18n = createI18n({
},
});
createApp(App).use(i18n).mount("#app");
const pinia = createPinia();
createApp(App).use(i18n).use(pinia).mount("#app");