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/file-upload.md
1# FileUpload23An input element to upload files.45## Key Props67- `multiple`: to allow multiple files to be selected.8- `dropzone`: to enable/disable the droppable area.9- `interactive`: to enable/disable the clickable area.10- `accept`: to specify the allowed file types for the input.11- `label`: to set the label of the FileUpload.12- `description`: to set the description of the FileUpload.13- `icon`: to set the icon of the FileUpload.14- `color`: to change the color of the FileUpload.15- `variant`: to change the variant of the FileUpload.16- `size`: to change the size of the FileUpload.1718## Usage1920```vue21<UFileUpload22<!-- props here -->23/>24```2526## Slots2728- `#actions`29