From 93b98252a42c626d8ceacdb45a3d055100056bd1 Mon Sep 17 00:00:00 2001 From: chachew Date: Thu, 25 Apr 2024 10:03:53 -0500 Subject: [PATCH] docs: update form.md (#511) Small text change for clarity --- apps/www/src/content/docs/components/form.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/www/src/content/docs/components/form.md b/apps/www/src/content/docs/components/form.md index 1bb4cf7f..52640f3d 100644 --- a/apps/www/src/content/docs/components/form.md +++ b/apps/www/src/content/docs/components/form.md @@ -249,7 +249,7 @@ function onSubmit(values) { ### Build your form Based on last step we can either use `
` component or `useForm` composable -`useForm` is recommended cause values are typed automatically +`useForm` is recommended because values are typed automatically ```vue:line-numbers {2}