Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions src/content/docs/useform/getvalues.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ An optimized helper for reading form values. The difference between `watch` and

---

| Name | Type | Description |
| ------------ | --------------- | --------------------------------------------------------- |
| `fieldNames` | `undefined` | Returns the entire form values. |
| | `string` | Gets the value at path of the form values. |
| | `array` | Returns an array of the value at path of the form values. |
| `config` | `dirtyFields` | <Since version="7.63.0" /> Returns only dirty fields |
| | `touchedFields` | <Since version="7.63.0" /> Return only touchedFields |
| Name | | Type | Description |
| ------------ | --------------- | ------------------------------ | --------------------------------------------------------- |
| `fieldNames` | | <TypeText>undefined</TypeText> | Returns the entire form values. |
| | | <TypeText>string</TypeText> | Gets the value at path of the form values. |
| | | <TypeText>string[]</TypeText> | Returns an array of the value at path of the form values. |
| `config` | `dirtyFields` | <TypeText>boolean</TypeText> | <Since version="7.63.0" /> Returns only dirty fields. |
| | `touchedFields` | <TypeText>boolean</TypeText> | <Since version="7.63.0" /> Returns only touched fields. |

##### Examples:

Expand Down
Loading