从github上下拉的代码是英文的,要变成中文,步骤如下:
一、src\locales\index.js
把 en-US 改成 zh-CN
// default lang
import zhCN from './lang/zh-CN'
Vue.use(VueI18n)
export const defaultLang = 'zh-CN'
const messages = {
'zh-CN': {
...zhCN
}
}
二、src\core\bootstrap.js
同上
store.dispatch('setLang', storage.get(APP_LANGUAGE, 'zh-CN'))
三、src\store\modules\app.js
同上
const app = {
state: {
......
lang: 'zh-CN',
......
},
}