feat: toasts

This commit is contained in:
2026-07-14 11:44:17 +02:00
parent 3b499ff791
commit 566f8403ef
13 changed files with 181 additions and 14 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");