feat: toasts
This commit is contained in:
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user