天天看點

vue 中英文切換

vue2.X版本中在build/webpack.config.js檔案中

在屬性pulgins中設定如下屬性:

plugins: [
    new webpack.NormalModuleReplacementPlugin(/element-ui[\/\\]lib[\/\\]locale[\/\\]lang[\/\\]zh-CN/, 'element-ui/lib/locale/lang/en')
  ]
           

值:

new webpack.NormalModuleReplacementPlugin(/element-ui[\/\\]lib[\/\\]locale[\/\\]lang[\/\\]zh-CN/, 'element-ui/lib/locale/lang/en')
      

即可切換中英文

繼續閱讀