vue-vben-admin/src/components/Form/index.ts

13 lines
326 B
TypeScript
Raw Normal View History

2020-12-07 21:17:24 +08:00
import BasicForm from './src/BasicForm.vue';
2020-11-28 14:27:26 +08:00
import { withInstall } from '../util';
2020-09-28 20:19:10 +08:00
2020-12-07 21:17:24 +08:00
withInstall(BasicForm);
2020-09-28 20:19:10 +08:00
export * from './src/types/form';
export * from './src/types/formItem';
export { useComponentRegister } from './src/hooks/useComponentRegister';
export { useForm } from './src/hooks/useForm';
2020-11-28 14:27:26 +08:00
2020-12-07 21:17:24 +08:00
export { BasicForm };