You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
400 B
17 lines
400 B
/** |
|
* @program: kicc-ui |
|
* @description: 中文国际化配置 |
|
* @author: entfrm开发团队-王翔 |
|
* @create: 2022/4/9 |
|
*/ |
|
|
|
import { genMessage } from '../helper'; |
|
import antdLocale from 'ant-design-vue/es/locale/zh_CN'; |
|
|
|
const modules = import.meta.globEager('./zh-CN/**/*.ts'); |
|
export default { |
|
message: { |
|
...genMessage(modules as Recordable<Recordable>, 'zh-CN'), |
|
antdLocale, |
|
} |
|
};
|
|
|