mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-05 19:41:37 +08:00
fix: Fix the problem that the international setting of ant-design-vue does not work.
修复 ant-design-vue 国际化配置不生效问题。
This commit is contained in:
parent
2e90b7c614
commit
94fb7964b2
@ -5,7 +5,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import zh_CN from 'ant-design-vue/lib/locale-provider/zh_CN'
|
||||
import zh_CN from 'ant-design-vue/es/locale-provider/zh_CN'
|
||||
import enquireScreen from './utils/device'
|
||||
import {mapState} from 'vuex'
|
||||
|
||||
@ -33,14 +33,14 @@ export default {
|
||||
this.$i18n.locale = val
|
||||
switch (val) {
|
||||
case 'CN':
|
||||
this.locale = require('ant-design-vue/lib/locale-provider/zh_CN')
|
||||
this.locale = require('ant-design-vue/es/locale-provider/zh_CN').default
|
||||
break
|
||||
case 'HK':
|
||||
this.locale = require('ant-design-vue/lib/locale-provider/zh_TW')
|
||||
this.locale = require('ant-design-vue/es/locale-provider/zh_TW').default
|
||||
break
|
||||
case 'US':
|
||||
default:
|
||||
this.locale = require('ant-design-vue/lib/locale-provider/en_US')
|
||||
this.locale = require('ant-design-vue/es/locale-provider/en_US').default
|
||||
break
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user