Files
Smart-Farm/web/src/i18n/index.js
2025-12-22 14:34:25 +08:00

16 lines
300 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import Vue from 'vue'
import VueI18n from 'vue-i18n'
Vue.use(VueI18n)
// 注册i18n实例并引入语言文件文件格式等下解析
const i18n = new VueI18n({
locale: 'zh',
messages: {
'zh': require('./langs/zh.json'),
'en': require('./langs/en.json')
}
})
export default i18n