You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
487 B
16 lines
487 B
import { VueConstructor } from 'vue'
|
|
import { VxeUI } from '@vxe-ui/core'
|
|
import VxeFormItemComponent from '../form/src/form-item'
|
|
import { dynamicApp } from '../dynamics'
|
|
|
|
export const VxeFormItem = Object.assign(VxeFormItemComponent, {
|
|
install (app: VueConstructor) {
|
|
app.component(VxeFormItemComponent.name as string, VxeFormItemComponent)
|
|
}
|
|
})
|
|
|
|
dynamicApp.use(VxeFormItem)
|
|
VxeUI.component(VxeFormItemComponent)
|
|
|
|
export const FormItem = VxeFormItem
|
|
export default VxeFormItem
|
|
|