14 lines
365 B
TypeScript
14 lines
365 B
TypeScript
// import { dateEnUS, dateZhCN, enUS, zhCN } from 'naive-ui';
|
|
import zhCn from 'element-plus/dist/locale/zh-cn.mjs';
|
|
import en from 'element-plus/dist/locale/en.mjs';
|
|
|
|
export const UILocales: any = {
|
|
'zh-CN': zhCn,
|
|
'en-US': en
|
|
};
|
|
|
|
// export const naiveDateLocales: Record<App.I18n.LangType, NDateLocale> = {
|
|
// 'zh-CN': dateZhCN,
|
|
// 'en-US': dateEnUS
|
|
// };
|