diff --git a/docs/app/components/content/examples/form/FormExampleNested.vue b/docs/app/components/content/examples/form/FormExampleNested.vue index 7f866c23..a05266e0 100644 --- a/docs/app/components/content/examples/form/FormExampleNested.vue +++ b/docs/app/components/content/examples/form/FormExampleNested.vue @@ -4,7 +4,7 @@ import type { FormSubmitEvent } from '@nuxt/ui' const schema = z.object({ name: z.string().min(2), - news: z.boolean() + news: z.boolean().default(false) }) type Schema = z.output @@ -36,7 +36,7 @@ async function onSubmit(event: FormSubmitEvent) {
- +