2023-01-14 21:02:18 +08:00
|
|
|
import antd from 'ant-design-vue/es/locale-provider/zh_CN'
|
|
|
|
import momentCN from 'moment/locale/zh-cn'
|
|
|
|
import global from './zh-CN/global'
|
|
|
|
|
|
|
|
import menu from './zh-CN/menu'
|
|
|
|
import setting from './zh-CN/setting'
|
|
|
|
import user from './zh-CN/user'
|
|
|
|
import dashboard from './zh-CN/dashboard'
|
|
|
|
import form from './zh-CN/form'
|
|
|
|
import result from './zh-CN/result'
|
|
|
|
import account from './zh-CN/account'
|
|
|
|
|
|
|
|
const components = {
|
|
|
|
antLocale: antd,
|
|
|
|
momentName: 'zh-cn',
|
|
|
|
momentLocale: momentCN
|
|
|
|
}
|
|
|
|
|
|
|
|
export default {
|
|
|
|
message: '-',
|
|
|
|
|
|
|
|
'layouts.usermenu.dialog.title': '信息',
|
|
|
|
'layouts.usermenu.dialog.content': '您确定要注销吗?',
|
2023-01-14 19:56:12 +08:00
|
|
|
'layouts.userLayout.title': '简单易用的分布式异常重试服务平台',
|
2023-01-14 21:02:18 +08:00
|
|
|
...components,
|
|
|
|
...global,
|
|
|
|
...menu,
|
|
|
|
...setting,
|
|
|
|
...user,
|
|
|
|
...dashboard,
|
|
|
|
...form,
|
|
|
|
...result,
|
|
|
|
...account
|
|
|
|
}
|