Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Reference for Nuxt UI v4 (125+ components built on Reka UI + Tailwind CSS v4) including forms, overlays, and theming.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
components/form-field.md
1# FormField23A wrapper for form elements that provides validation and error handling.45## Key Props67- `label`: to set the label for the form control.8- `description`: to provide additional information below the label.9- `hint`: to display a hint message next to the label.10- `help`: to display a help message below the form control.11- `error`: to display an error message below the form control.12- `size`: to change the size of the FormField, the `size` is proxied to the form control.1314## Usage1516```vue17<UFormField18<!-- props here -->19/>20```21