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/input.md
1# Input23An input element to enter text.45## Key Props67- `type`: to change the input type.8- `placeholder`: to set a placeholder text.9- `color`: to change the ring color when the Input is focused.10- `variant`: to change the variant of the Input.11- `size`: to change the size of the Input.12- `icon`: to show an [Icon](/docs/components/icon) inside the Input.13- `avatar`: to show an [Avatar](/docs/components/avatar) inside the Input.14- `loading`: to show a loading icon on the Input.15- `disabled`: to disable the Input.1617## Usage1819```vue20<UInput21<!-- props here -->22/>23```2425## Slots2627- `#trailing`28- `#default`29