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.
12 lines
437 B
12 lines
437 B
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) {
|
|
app.component(VxeFormItemComponent.name, VxeFormItemComponent);
|
|
}
|
|
});
|
|
dynamicApp.use(VxeFormItem);
|
|
VxeUI.component(VxeFormItemComponent);
|
|
export const FormItem = VxeFormItem;
|
|
export default VxeFormItem;
|
|
|