美文网首页
ant design pro of vue 设置默认语言为中文

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

作者: 不负好时光_9c46 | 来源:发表于2021-04-27 13:00 被阅读0次

原文地址:【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',

  },

第四步:清空浏览器缓存

相关文章

网友评论

      本文标题:ant design pro of vue 设置默认语言为中文

      本文链接:https://www.haomeiwen.com/subject/ulburltx.html