23 lines
519 B
TypeScript
23 lines
519 B
TypeScript
import { setup } from '@/components/form.fields';
|
|
import { QuestionCircleOutlined } from '@ant-design/icons';
|
|
import {
|
|
SchemaForm,
|
|
SchemaMarkupField as Field,
|
|
createFormActions,
|
|
createAsyncFormActions,
|
|
Submit,
|
|
Reset,
|
|
FormButtonGroup,
|
|
registerFormFields,
|
|
FormValidator,
|
|
setValidationLanguage,
|
|
} from '@formily/antd';
|
|
import './style.less';
|
|
|
|
setup();
|
|
setValidationLanguage('zh-CN');
|
|
|
|
export { Form } from './Form';
|
|
export { DrawerForm } from './DrawerForm';
|
|
export { FilterForm } from './FilterForm';
|