17 lines
562 B
TypeScript
17 lines
562 B
TypeScript
import { VueConstructor } from 'vue'
|
|
import { VxeUI } from '@vxe-ui/core'
|
|
import { dynamicApp } from '../dynamics'
|
|
import VxeLayoutContainerComponent from './src/layout-container'
|
|
|
|
export const VxeLayoutContainer = Object.assign({}, VxeLayoutContainerComponent, {
|
|
install (app: VueConstructor) {
|
|
app.component(VxeLayoutContainerComponent.name as string, VxeLayoutContainerComponent)
|
|
}
|
|
})
|
|
|
|
dynamicApp.use(VxeLayoutContainer)
|
|
VxeUI.component(VxeLayoutContainerComponent)
|
|
|
|
export const LayoutContainer = VxeLayoutContainer
|
|
export default VxeLayoutContainer
|