Skip to content

BreadcrumbItem

interface

A single item in the breadcrumb trail.

id is used as the @for track expression and emitted back on click. name is rendered as-is — no truncation, translation, or fallback applied. Position in the array determines the role: all items except the last are clickable links; the last item is rendered as non-clickable text representing the current location.

interface BreadcrumbItem {
id: string;
name: string;
}

Type: string

Unique identifier — emitted via navigate output when the item is activated.

Type: string

Display label shown in the breadcrumb trail.