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?