I am currently working with Vue 3 and vee-validate V4, but I'm facing an issue where I can't retrieve all error messages within the script tag. Is there a way to access all error messages from the script tag?
<Form v-slot="{ errors }">
<Field name="name" />
<pre>
{{ errors.name }}
</pre>
</Form>
Does anyone know how to retrieve all errors in the script tag?