Ant design pro of vue 中文设置

从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',
    ......
  },
}

四、清除浏览器的缓存

最最重要的,要清除浏览器缓存,不然还是英文的。
 

上一篇:koa操作MongoDB数据库的封装


下一篇:npm淘宝镜像