Skip to content

Breadcrumb

<ax-breadcrumb> is a navigation trail. Project <ax-breadcrumb-item> children; each renders a leading separator (hidden on the first via CSS). Mark the current page with [current]="true".

import { AxBreadcrumbComponent, AxBreadcrumbItemComponent } from '@axisui-ng/navigation';
<ax-breadcrumb>
<ax-breadcrumb-item><a routerLink="/">Home</a></ax-breadcrumb-item>
<ax-breadcrumb-item><a routerLink="/docs">Docs</a></ax-breadcrumb-item>
<ax-breadcrumb-item [current]="true">Breadcrumb</ax-breadcrumb-item>
</ax-breadcrumb>
InputTypeDefaultNotes
separatorAxIconName'chevron-right'Retained for theming; v1 items always render chevron-right.
InputTypeDefaultNotes
currentbooleanfalseMarks the current page (aria-current="page"); typically the last item as plain text.

Host is role="navigation" with aria-label="Breadcrumb". Items sit in a role="list" / role="listitem" structure. The current item sets aria-current="page". Separators are decorative (aria-hidden).

Interactive examples live in Storybook under Navigation / Breadcrumb. Run pnpm storybook to explore them.