Skip to content

Commit f3635e7

Browse files
authored
docs(api): correct type for useForm's initial values (#5077)
Since bbecc97 reactive initial values are removed.
1 parent 84f87ce commit f3635e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/src/pages/api/use-form.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,11 +92,11 @@ Enables form-level validation, uses the specified schema to validate the fields.
9292

9393
<CodeTitle level="4">
9494

95-
`initialValues?: MaybeRef<Record<string, any>>`
95+
`initialValues?: Record<string, any>`
9696

9797
</CodeTitle>
9898

99-
The initial values for the form, can be a reactive object or reference.
99+
The initial values for the form.
100100

101101
```js
102102
const { ... } = useForm({

0 commit comments

Comments
 (0)