diff --git a/docs/components/content/examples/FormExampleJoi.vue b/docs/components/content/examples/FormExampleJoi.vue index 486f7586cc..00e3f02e6c 100644 --- a/docs/components/content/examples/FormExampleJoi.vue +++ b/docs/components/content/examples/FormExampleJoi.vue @@ -10,8 +10,8 @@ const schema = Joi.object({ }) const state = ref({ - email: undefined, - password: undefined + emailJoi: undefined, + passwordJoi: undefined }) const form = ref() @@ -30,11 +30,11 @@ async function submit () { @submit.prevent="submit" > - + - + diff --git a/docs/components/content/examples/FormExampleYup.vue b/docs/components/content/examples/FormExampleYup.vue index 37de1bdc09..adbbddf290 100644 --- a/docs/components/content/examples/FormExampleYup.vue +++ b/docs/components/content/examples/FormExampleYup.vue @@ -13,8 +13,8 @@ const schema = object({ type Schema = InferType const state = ref({ - email: undefined, - password: undefined + emailYup: undefined, + passwordYup: undefined }) const form = ref>() @@ -33,11 +33,11 @@ async function submit () { @submit.prevent="submit" > - + - + diff --git a/docs/components/content/examples/FormExampleZod.vue b/docs/components/content/examples/FormExampleZod.vue index 7cb2040d94..284a345c83 100644 --- a/docs/components/content/examples/FormExampleZod.vue +++ b/docs/components/content/examples/FormExampleZod.vue @@ -11,8 +11,8 @@ const schema = z.object({ type Schema = z.output const state = ref({ - email: undefined, - password: undefined + emailZod: undefined, + passwordZod: undefined }) const form = ref>() @@ -31,11 +31,11 @@ async function submit () { @submit.prevent="submit" > - + - +