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/chat-message.md
1# ChatMessage23Display a chat message with icon, avatar, and actions.45## Key Props67- `parts`: to display the message content using the AI SDK v5 format.8- `side`: to display the message on the left or right.9- `variant`: to change style of the message.10- `icon`: to display an [Icon](/docs/components/icon) component next to the message.11- `avatar`: to display an [Avatar](/docs/components/avatar) component next to the message.12- `actions`: to display actions below the message that will be displayed when hovering over the message.1314## Usage1516```vue17<UChatMessage18<!-- props here -->19/>20```21