ant design pro of vue 设置默认语言为中文

2021-04-27  本文已影响0人  不负好时光_9c46

原文地址:【Antd+vue】Antd pro项目设置默认语言为中文

第一步:在src\locales\index.js文件

// 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, 'en-US')) 

 store.dispatch('setLang', storage.get(APP_LANGUAGE, 'zh-CN'))

第三步:修改src\store\modules\app.js文件

state: {

    lang: 'zh-CN',

  },

第四步:清空浏览器缓存

上一篇下一篇

猜你喜欢

热点阅读