|
@@ -419,7 +419,7 @@ export interface FormSchema<
|
|
help?: string;
|
|
help?: string;
|
|
/** 表单项 */
|
|
/** 表单项 */
|
|
label?: string;
|
|
label?: string;
|
|
- // 自定义组件内部渲染
|
|
|
|
|
|
+ /** 自定义组件内部渲染 */
|
|
renderComponentContent?: RenderComponentContentType;
|
|
renderComponentContent?: RenderComponentContentType;
|
|
/** 字段规则 */
|
|
/** 字段规则 */
|
|
rules?: FormSchemaRuleType;
|
|
rules?: FormSchemaRuleType;
|
|
@@ -500,3 +500,20 @@ import { z } from '#/adapter/form';
|
|
});
|
|
});
|
|
}
|
|
}
|
|
```
|
|
```
|
|
|
|
+
|
|
|
|
+## Slots
|
|
|
|
+
|
|
|
|
+可以使用以下插槽在表单中插入自定义的内容
|
|
|
|
+
|
|
|
|
+| 插槽名 | 描述 |
|
|
|
|
+| ------------- | ------------------ |
|
|
|
|
+| reset-before | 重置按钮之前的位置 |
|
|
|
|
+| submit-before | 提交按钮之前的位置 |
|
|
|
|
+| expand-before | 展开按钮之前的位置 |
|
|
|
|
+| expand-after | 展开按钮之后的位置 |
|
|
|
|
+
|
|
|
|
+::: tip 字段插槽
|
|
|
|
+
|
|
|
|
+除了以上内置插槽之外,`schema`属性中每个字段的`fieldName`都可以作为插槽名称,这些字段插槽的优先级高于`component`定义的组件。也就是说,当提供了与`fieldName`同名的插槽时,这些插槽的内容将会作为这些字段的组件,此时`component`的值将会被忽略。
|
|
|
|
+
|
|
|
|
+:::
|