vue3 + antdv 3.x 国际化
1
2
3
4
5
6
7
// app.vue
import zhCN from 'ant-design-vue/lib/locale-provider/zh_CN'
import 'dayjs/locale/zh-cn'
const locale = zhCN
<a-config-provider :locale="locale">
<RouterView />
</a-config-provider>
This post is licensed under CC BY 4.0 by the author.