How to get all error messages in script tag by using Vee validate V4 in vue 3

Viewed 26

I Am using Vue 3 with vee-validate V4, and I am unable to get all error messages inside the script tag. Is there any way to get all error messages inside the script tag?

<Form v-slot="{ errors }">
  <Field name="name" />
  <pre>
    {{ errors.name }}
  </pre>
</Form>

How do get all errors in the script tag?

0 Answers
Related