[U] Update i18n

This commit is contained in:
Hykilpikonna
2021-12-04 19:45:32 -05:00
parent b63dc0602f
commit d3876372c9
4 changed files with 70 additions and 12 deletions
+2 -1
View File
@@ -1,5 +1,6 @@
import {createApp} from 'vue'
import App from './App.vue'
import router from './router'
import {i18n} from "@/messages";
createApp(App).use(router).mount('#app')
createApp(App).use(router).use(i18n).mount('#app')
+14
View File
@@ -0,0 +1,14 @@
import {createI18n} from "vue-i18n";
export const messages = {
en: {
},
zh: {
}
}
export const i18n = createI18n({
messages
})