Files
geg-gas-web/src/components/SystemForm/index.ts
2024-02-05 09:15:37 +08:00

8 lines
356 B
TypeScript

import { withInstall } from '/@/utils';
import FormVue from './src/Form.vue';
import DesktopFormVue from './src/DesktopForm.vue';
import PreviewSystemFormVue from './src/Preview.vue';
export const SystemForm = withInstall(FormVue);
export const DesktopForm = withInstall(DesktopFormVue);
export const PreviewSystemForm = withInstall(PreviewSystemFormVue);