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/textarea.md
1# Textarea23A textarea element to input multi-line text.45## Key Props67- `rows`: to set the number of rows.8- `placeholder`: to set a placeholder text.9- `autoresize`: to enable autoresizing the height of the Textarea.10- `maxrows`: to set the maximum number of rows when autoresizing.11- `color`: to change the ring color when the Textarea is focused.12- `variant`: to change the variant of the Textarea.13- `size`: to change the size of the Textarea.14- `icon`: to show an [Icon](/docs/components/icon) inside the Textarea.15- `avatar`: to show an [Avatar](/docs/components/avatar) inside the Textarea.16- `loading`: to show a loading icon on the Textarea.1718## Usage1920```vue21<UTextarea22<!-- props here -->23/>24```25