Skip to content
This repository was archived by the owner on Apr 9, 2025. It is now read-only.

Commit 2662f8b

Browse files
author
Daniel Requejo
committed
Escape pipes in markdown table
1 parent 2923706 commit 2662f8b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/api/use-form-handler/register.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@ Coming soon...
4141
| isDirty | `boolean` | Dirty state binding for the field. Only returned if `withDetails` is true |
4242
| isTouched | `boolean` | Touched state binding for the field. Only returned if `withDetails` is true |
4343
| onChange | `(el: any) => Promise<void>` | Value update handler for native inputs |
44-
| required | `boolean | string` | Native required validation. Only returned if `useNativeValidations` is set to true and `required` is set. |
45-
| min | `number | Object` | Native min validation. Only returned if `useNativeValidations` is set to true and `min` is set. |
46-
| max | `number | Object` | Native max validation. Only returned if `useNativeValidations` is set to true and `max` is set. |
47-
| minLength | `number | Object` | Native minLength validation. Only returned if `useNativeValidations` is set to true and `minLength` is set. |
48-
| maxLength | `number | Object` | Native maxLength validation. Only returned if `useNativeValidations` is set to true and `maxLength` is set. |
49-
| pattern | `string | RegExp | Object` | Native pattern validation. Only returned if `useNativeValidations` is set to true and `pattern` is set. |
44+
| required | `boolean \| string` | Native required validation. Only returned if `useNativeValidations` is set to true and `required` is set. |
45+
| min | `number \| Object` | Native min validation. Only returned if `useNativeValidations` is set to true and `min` is set. |
46+
| max | `number \| Object` | Native max validation. Only returned if `useNativeValidations` is set to true and `max` is set. |
47+
| minLength | `number \| Object` | Native minLength validation. Only returned if `useNativeValidations` is set to true and `minLength` is set. |
48+
| maxLength | `number \| Object` | Native maxLength validation. Only returned if `useNativeValidations` is set to true and `maxLength` is set. |
49+
| pattern | `string \| RegExp \| Object` | Native pattern validation. Only returned if `useNativeValidations` is set to true and `pattern` is set. |
5050

5151
:::info
5252
Notice how `modelValue` and `'onUpdate:modelValue'` are used as our two way data binding for non-native inputs following the Vue [approach](https://vuejs.org/guide/components/v-model.html). So that your fields used for complex forms could also be re-used in other parts of your application with v-model.

0 commit comments

Comments
 (0)