index.js 557 B

12345678910111213
  1. import { VxeUI } from '@vxe-ui/core';
  2. import VxeFormGroupComponent from '../form/src/form-group';
  3. import { dynamicApp } from '../dynamics';
  4. const VxeFormGatherComponent = Object.assign({}, VxeFormGroupComponent, { name: 'VxeFormGather' });
  5. export const VxeFormGather = Object.assign(VxeFormGatherComponent, {
  6. install(app) {
  7. app.component(VxeFormGatherComponent.name, VxeFormGatherComponent);
  8. }
  9. });
  10. dynamicApp.use(VxeFormGather);
  11. VxeUI.component(VxeFormGatherComponent);
  12. export const FormGather = VxeFormGather;
  13. export default VxeFormGather;