diff --git a/src/content/docs/useform/getvalues.mdx b/src/content/docs/useform/getvalues.mdx index fcf8e0050..34949007f 100644 --- a/src/content/docs/useform/getvalues.mdx +++ b/src/content/docs/useform/getvalues.mdx @@ -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` | Returns only dirty fields | -| | `touchedFields` | Return only touchedFields | +| Name | | Type | Description | +| ------------ | --------------- | ------------------------------ | --------------------------------------------------------- | +| `fieldNames` | | undefined | Returns the entire form values. | +| | | string | Gets the value at path of the form values. | +| | | string[] | Returns an array of the value at path of the form values. | +| `config` | `dirtyFields` | boolean | Returns only dirty fields. | +| | `touchedFields` | boolean | Returns only touched fields. | ##### Examples: