You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For what version of Nuxt UI are you suggesting this?
v2.x
Description
It would be cool if the errors array from UForm supported the message parameter having an array value (multiple messages). The default backwards compatible method could just join them with a space or something. (See https://ui.nuxt.com/components/form-group#props)
That is all.
Activity
github-actions commentedon Feb 15, 2025
This issue is stale because it has been open for 30 days with no activity.
Dominic-Marcelino commentedon Mar 31, 2025
In case anyone else comes across this: In v3 the Form component provides the full error array. This way you can access it in any child:
feat(FormField): display multiple errors
romhml commentedon Jun 29, 2025
We decided not to move forward with this to avoid introducing confusion by adding a
errors
alongside the existingerror
property.You can however implement a simple component around the FormField to achieve this: