diff --git a/src/form/_example/customized-form-controls.tsx b/src/form/_example/customized-form-controls.tsx
new file mode 100644
index 0000000000..43a5340001
--- /dev/null
+++ b/src/form/_example/customized-form-controls.tsx
@@ -0,0 +1,87 @@
+import React from 'react';
+import { Form, Input, Button, MessagePlugin, Space, Select } from 'tdesign-react';
+import type { FormProps } from 'tdesign-react';
+
+interface ICourseSelect {
+ value?: {
+ type?: string;
+ name?: string;
+ };
+ onChange?: (v: { type?: string; name?: string }) => void;
+}
+
+const { FormItem } = Form;
+
+function CourseSelect(props: ICourseSelect) {
+ const { value, onChange } = props;
+
+ return (
+
+
+ );
+}
+
+export default function BaseForm() {
+ const [form] = Form.useForm();
+
+ const onSubmit: FormProps['onSubmit'] = (e) => {
+ console.log(e);
+ if (e.validateResult === true) {
+ MessagePlugin.info('提交成功');
+ }
+ };
+ const setData = () => {
+ form.setFieldsValue?.({
+ course: {
+ type: 'math',
+ name: '线性代数',
+ },
+ });
+ };
+
+ return (
+
+ );
+}
diff --git a/src/form/form.md b/src/form/form.md
index 245d49d880..09fc055486 100644
--- a/src/form/form.md
+++ b/src/form/form.md
@@ -2,16 +2,22 @@
### 复杂嵌套数据结构表单
-可给 `name` 传入数组整理成对象嵌套数据结构
+可给 `name` 传入数组整理成对象嵌套数据结构。
{{ nested-data }}
### 动态增减嵌套表单
-可使用 `Form.FormList` 组件创建动态表单
+可使用 `Form.FormList` 组件创建动态表单。
{{ form-list }}
+### 自定义表单控件
+
+可以使用 `Form.FormItem` 包裹自定义组件并在组件中接受 `value` 和 `onChange` 的入参,实现自定义表单控件。
+
+{{ customized-form-controls }}
+
## Hooks
### Form.useForm