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/changelog-version.md
1# ChangelogVersion23A customizable article to display in a changelog.45## Key Props67- `title`: to display the title of the ChangelogVersion.8- `description`: to display the description of the ChangelogVersion.9- `date`: to display the date of the ChangelogVersion.10- `badge`: to display a [Badge](/docs/components/badge) on the ChangelogVersion.11- `image`: to display an image in the BlogPost.12- `authors`: to display a list of [User](/docs/components/user) in the ChangelogVersion as an array of objects with the following properties:1314- `name?: string`{lang="ts-type"}15- `description?: string`{lang="ts-type"}16- `avatar?: Omit<AvatarProps, 'size'>`{lang="ts-type"}17- `chip?: boolean | Omit<ChipProps, 'size' | 'inset'>`{lang="ts-type"}18- `size?: UserProps['size']`{lang="ts-type"}19- `orientation?: UserProps['orientation']`{lang="ts-type"}2021You can pass any property from the [Link](/docs/components/link#props) component such as `to`, `target`, etc.2223- `indicator`: to hide the indicator dot on the left.2425## Usage2627```vue28<UChangelogVersion29<!-- props here -->30/>31```32