14 lines
260 B
TypeScript
14 lines
260 B
TypeScript
|
|
import en from 'element-plus/es/locale/lang/en'
|
||
|
|
import components from './components'
|
||
|
|
import layout from './layout'
|
||
|
|
import views from './views'
|
||
|
|
import common from './common'
|
||
|
|
export default {
|
||
|
|
lang: 'English',
|
||
|
|
layout,
|
||
|
|
views,
|
||
|
|
components,
|
||
|
|
en,
|
||
|
|
common
|
||
|
|
}
|