Skip to content
On this page

Subforms

How to

Using the addErrors function on the Form object, you can add external errors to the form.

Example

vue
<script setup lang="ts">
import { useForm } from 'formango'

import { loginFormSchema } from './loginForm.model'

const form = useForm({
  schema: loginFormSchema,
  onSubmit: async (data) => {
  // Handle user create
    const response = await fetch('loginUrl', {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json',
      },
      body: JSON.stringify(user),
    })
    const data = await response.json()

    if (!response.ok) {
    /* Response is not ok, set form errors, response example:
     {
        'password': 'Credentials are invalid',
     }

    **/
      const passwordError = (await data.json()).password
      // Sets the errors to the password field, so the user can see them
      form.addErrors([{
        path: 'password',
        message: 'Your password or email address is wrong'
      }])

      return
    }

    console.log(data)

  }
})

const email = form.register('email')
const password = form.register('password')
</script>

<template>
  <div>
    <CustomInput v-bind="email" />
    <CustomInput v-bind="password" />
  </div>
</template>
ts
import { z } from 'zod'

export const loginFormSchema = z.object({
  email: z.string().email(),
  password: z.string().min(8),
})

export type LoginForm = z.infer<typeof loginFormSchema>