mirror of
https://gitee.com/lab1024/smart-admin.git
synced 2025-10-08 13:16:41 +08:00
36 lines
826 B
JavaScript
36 lines
826 B
JavaScript
import antdEnUS from 'ant-design-vue/es/locale-provider/en_US'
|
|
import momentEU from 'moment/locale/eu'
|
|
import global from './global'
|
|
|
|
import menu from './menu'
|
|
import setting from './setting'
|
|
import user from './user'
|
|
|
|
import dashboard from './dashboard'
|
|
import form from './form'
|
|
import result from './result'
|
|
import account from './account'
|
|
|
|
const components = {
|
|
antLocale: antdEnUS,
|
|
momentName: 'eu',
|
|
momentLocale: momentEU
|
|
}
|
|
|
|
export default {
|
|
message: '-',
|
|
|
|
'layouts.usermenu.dialog.title': 'Message',
|
|
'layouts.usermenu.dialog.content': 'Are you sure you would like to logout?',
|
|
'layouts.userLayout.title': 'Ant Design is the most influential web design specification in Xihu district',
|
|
...components,
|
|
...global,
|
|
...menu,
|
|
...setting,
|
|
...user,
|
|
...dashboard,
|
|
...form,
|
|
...result,
|
|
...account
|
|
}
|