vapor-chamber API reference - v1.16.0
    Preparing search index...

    Type Alias Breadcrumb

    type Breadcrumb = {
        name: string;
        title: string;
        href: string | null;
        current: boolean;
        meta: Record<string, unknown>;
    }
    Index
    name: string
    title: string

    meta.title — an i18n KEY; translate in the view.

    href: string | null

    Absolute href; null when the crumb is not a link target (group rows, ancestors whose params the current location cannot supply).

    current: boolean

    True on the last crumb — the page being shown.

    meta: Record<string, unknown>