mirror of
https://gitee.com/bootx/dax-pay-ui.git
synced 2025-09-03 10:56:00 +00:00
11 lines
287 B
TypeScript
11 lines
287 B
TypeScript
import { genMessage } from '../helper';
|
|
import antdLocale from 'ant-design-vue/es/locale/zh_CN';
|
|
|
|
const modules = import.meta.glob('./zh-CN/**/*.json', { eager: true });
|
|
export default {
|
|
message: {
|
|
...genMessage(modules as Recordable<Recordable>, 'zh-CN'),
|
|
antdLocale,
|
|
},
|
|
};
|