2024-11-14 10:33:06 +00:00
|
|
|
import en from 'element-plus/es/locale/lang/en'
|
|
|
|
|
import components from './components'
|
|
|
|
|
import layout from './layout'
|
|
|
|
|
import views from './views'
|
2025-01-13 03:30:52 +00:00
|
|
|
import common from './common'
|
2025-01-21 07:25:21 +00:00
|
|
|
import dynamicsForm from './dynamics-form'
|
|
|
|
|
import chat from './ai-chat'
|
2024-04-28 04:43:16 +00:00
|
|
|
export default {
|
2024-11-14 10:33:06 +00:00
|
|
|
lang: 'English',
|
|
|
|
|
layout,
|
|
|
|
|
views,
|
|
|
|
|
components,
|
|
|
|
|
en,
|
2025-01-21 07:25:21 +00:00
|
|
|
common,
|
|
|
|
|
dynamicsForm,
|
|
|
|
|
chat
|
2024-11-14 10:33:06 +00:00
|
|
|
}
|