aboutsummaryrefslogtreecommitdiff
path: root/src-vue/src/main.ts
blob: c586a747485c3462ace617ce5413ed4090b636a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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";


const app = createApp(App);



app.mount('#app')