14 lines
340 B
TypeScript
14 lines
340 B
TypeScript
![]() |
import { genMessage } from '../helper';
|
||
|
import antdLocale from 'ant-design-vue/es/locale/en_US';
|
||
|
//import momentLocale from 'moment/dist/locale/eu';
|
||
|
|
||
|
const modules = import.meta.globEager('./en/**/*.ts');
|
||
|
export default {
|
||
|
message: {
|
||
|
...genMessage(modules, 'en'),
|
||
|
antdLocale,
|
||
|
},
|
||
|
momentLocale:null,
|
||
|
momentLocaleName: 'en',
|
||
|
};
|