En construcciónNumori se está construyendo en abierto. Todavía no hay nada en venta y la mayoría de las aplicaciones están sin terminar.Ver qué está listo

UiBreadcrumb

The trail from the site root to the current page.

Contenido

A navigation trail whose final item always renders as aria-current="page" text rather than a link. Separators are decorative icons. Links render with linkTag, so a router link component can replace the plain anchor; the item scoped slot allows full control of each entry.

Ejemplos

Anchor links

The final entry is plain text; earlier ones link.

<UiBreadcrumb
  :items="[
    { label: 'Home', href: '#' },
    { label: 'Products', href: '#' },
    { label: 'Notes' },
  ]"
/>

Custom separator

Any MDI icon can separate the entries.

<UiBreadcrumb
  separator-icon="mdi:slash-forward"
  :items="[
    { label: 'Docs', href: '#' },
    { label: 'Components', href: '#' },
    { label: 'Breadcrumb' },
  ]"
/>

Props

NombreTipoPor defectoDescripción
itemsobligatorioarrayEntries `{ label, to?, href? }`, root first; the last renders as text.
ariaLabelstring'Breadcrumb'Accessible name for the surrounding nav.
linkTagstring'a'Element or component used for linked entries (e.g. NuxtLink).
separatorIconstring'mdi:chevron-right'MDI icon drawn between entries.

Slots

SlotDescripción
itemOverride a single entry. Scope: `{ item, index, isLast }`.