@azulejo-kit/breadcrumb
v1.1.0
Published
A breadcrumb navigation component that shows the current page location within a hierarchy.
Downloads
61
Readme
Breadcrumb
A breadcrumb navigation component that shows the current page location within a hierarchy.
Installation
npm install @azulejo-kit/breadcrumb
# or
yarn add @azulejo-kit/breadcrumbProps
| Name | Type | Default | Description |
| --- | --- | --- | --- |
| links | BreadcrumbLink[] | — | Required. Array of breadcrumb link definitions. |
| appearance | "light" | "dark" | "light" | Visual appearance of the breadcrumb. |
Basic Usage
<template>
<AzBreadcrumb :links="[{ label: 'Home', href: '/' }, { label: 'Products', href: '/products' }, { label: 'Item', href: '/products/item', current: true }]" />
</template>