17 lines
429 B
TypeScript
17 lines
429 B
TypeScript
import { VueConstructor } from 'vue'
|
|
import { VxeUI } from '@vxe-ui/core'
|
|
import { dynamicApp } from '../dynamics'
|
|
import VxeRowComponent from './src/row'
|
|
|
|
export const VxeRow = Object.assign({}, VxeRowComponent, {
|
|
install (app: VueConstructor) {
|
|
app.component(VxeRowComponent.name as string, VxeRowComponent)
|
|
}
|
|
})
|
|
|
|
dynamicApp.use(VxeRow)
|
|
VxeUI.component(VxeRowComponent)
|
|
|
|
export const Row = VxeRow
|
|
export default VxeRow
|