2021-02-27 23:08:12 +08:00
|
|
|
import { genMessage } from '../helper';
|
|
|
|
|
import antdLocale from 'ant-design-vue/es/locale/zh_CN';
|
|
|
|
|
import momentLocale from 'moment/dist/locale/zh-cn';
|
|
|
|
|
|
2021-03-02 20:54:15 +08:00
|
|
|
const modules = import.meta.globEager('./zh_CN/**/*.ts');
|
2021-02-27 23:08:12 +08:00
|
|
|
export default {
|
|
|
|
|
message: {
|
|
|
|
|
...genMessage(modules, 'zh_CN'),
|
|
|
|
|
antdLocale,
|
|
|
|
|
},
|
|
|
|
|
momentLocale,
|
|
|
|
|
momentLocaleName: 'zh-cn',
|
|
|
|
|
};
|