You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,6 +27,17 @@ An enterprise-class UI components based on Ant Design 3.X and Vue.
27
27
- A set of high-quality Vue components out of the box.
28
28
- Shared [Ant Design of React](https://ant.design/docs/spec/introduce) design resources.
29
29
30
+
## Donation
31
+
32
+
vue-antd-ui is an open source independent project. In order to achieve better and sustainable development of the project, we hope to get your support. You can support us in any of the following ways:
Copy file name to clipboardExpand all lines: components/form/index.en-US.md
+2-4Lines changed: 2 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -119,13 +119,11 @@ After wrapped by `getFieldDecorator`, `value`(or other property defined by `valu
119
119
| options.initialValue | You can specify initial value, type, optional value of children node. (Note: Because `Form` will test equality with `===` internaly, we recommend to use vairable as `initialValue`, instead of literal) || n/a |
120
120
| options.normalize | Normalize value to form component, [a select-all example](https://codesandbox.io/s/kw4l2vqqmv)| function(value, prevValue, allValues): any | - |
121
121
| options.rules | Includes validation rules. Please refer to "Validation Rules" part for details. | object\[]| n/a |
122
-
| options.trigger | When to collect the value of children node | string | 'onChange' |
122
+
| options.trigger | When to collect the value of children node | string | 'change' |
123
123
| options.validateFirst | Whether stop validate on first rule of error for this field. | boolean | false |
124
-
| options.validateTrigger | When to validate the value of children node. | string\|string\[]| 'onChange' |
124
+
| options.validateTrigger | When to validate the value of children node. | string\|string\[]| 'change' |
125
125
| options.valuePropName | Props of children node, for example, the prop of Switch is 'checked'. | string | 'value' |
126
126
127
-
More option can be referenced at [rc-form option](https://github.com/react-component/form#option-object)。
0 commit comments