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/breadcrumb.md
1# Breadcrumb23A hierarchy of links to navigate through a website.45## Key Props67- `items`: as an array of objects with the following properties:89- `label?: string`{lang="ts-type"}10- `icon?: string`{lang="ts-type"}11- `avatar?: AvatarProps`{lang="ts-type"}12- [`slot?: string`{lang="ts-type"}](#with-custom-slot)13- `class?: any`{lang="ts-type"}14- `ui?: { item?: ClassNameValue, link?: ClassNameValue, linkLeadingIcon?: ClassNameValue, linkLeadingAvatar?: ClassNameValue, linkLabel?: ClassNameValue, separator?: ClassNameValue, separatorIcon?: ClassNameValue }`{lang="ts-type"}1516You can pass any property from the [Link](/docs/components/link#props) component such as `to`, `target`, etc.1718- `slot`:1920## Usage2122```vue23<UBreadcrumb24<!-- props here -->25/>26```2728## Slots2930- `#item`31