Files
geg-gas-web/src/components/SystemForm/index.ts

8 lines
356 B
TypeScript
Raw Normal View History

2024-02-05 09:15:37 +08:00
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);