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.
13 lines
557 B
13 lines
557 B
import { VxeUI } from '@vxe-ui/core';
|
|
import VxeFormGroupComponent from '../form/src/form-group';
|
|
import { dynamicApp } from '../dynamics';
|
|
const VxeFormGatherComponent = Object.assign({}, VxeFormGroupComponent, { name: 'VxeFormGather' });
|
|
export const VxeFormGather = Object.assign(VxeFormGatherComponent, {
|
|
install(app) {
|
|
app.component(VxeFormGatherComponent.name, VxeFormGatherComponent);
|
|
}
|
|
});
|
|
dynamicApp.use(VxeFormGather);
|
|
VxeUI.component(VxeFormGatherComponent);
|
|
export const FormGather = VxeFormGather;
|
|
export default VxeFormGather;
|
|
|