kun-galgame-vue/src/language/i18n.ts

19 lines
343 B
TypeScript
Raw Normal View History

2023-05-19 18:23:25 +00:00
import { createI18n } from 'vue-i18n'
2023-05-20 14:40:17 +00:00
// 引入语言文件
2023-05-19 18:23:25 +00:00
import zh from './zh'
import en from './en'
const i18n = createI18n({
2023-05-20 16:16:15 +00:00
locale: localStorage.getItem('locale') || 'en',
2023-05-19 18:23:25 +00:00
// 支持 Vue3 composition API
legacy: false,
// 全局注册 ts 方法
globalInjection: true,
messages: {
zh,
en,
},
})
export default i18n