From 130659e90098d1147fe2d846c97b88a84da3b357 Mon Sep 17 00:00:00 2001 From: KimJunYoung Date: Sat, 8 Aug 2026 14:15:23 +0900 Subject: [PATCH] docs: fix getValues props table --- src/content/docs/useform/getvalues.mdx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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: