diff options
Diffstat (limited to 'src-vue/src/main.ts')
-rw-r--r-- | src-vue/src/main.ts | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/src-vue/src/main.ts b/src-vue/src/main.ts index b670de8b..c586a747 100644 --- a/src-vue/src/main.ts +++ b/src-vue/src/main.ts @@ -1,4 +1,18 @@ -import { createApp } from "vue"; -import App from "./App.vue"; +import { createApp } from 'vue' +import App from './App.vue' +import en from "./i18n/lang/en.json"; +import fr from "./i18n/lang/fr.json"; +import da from "./i18n/lang/da.json"; +import de from "./i18n/lang/de.json"; +import es from "./i18n/lang/es.json"; +import pl from "./i18n/lang/pl.json"; +import ru from "./i18n/lang/ru.json"; +import it from "./i18n/lang/it.json"; +import zh_Hans from "./i18n/lang/zh_Hans.json"; -createApp(App).mount("#app"); + +const app = createApp(App); + + + +app.mount('#app') |