Skip to content

Breadcrumbs

Navigation trail with aria-current for the current page.

Usage

vue
<script setup>
import { ArchBreadcrumbs } from "@archora/ui";

const items = [{ label: "Projects", href: "/projects" }, { label: "Console" }];
</script>

<template>
  <ArchBreadcrumbs :items="items" />
</template>

Live sandbox

Breadcrumbs can be tested directly on this page.

interactive
<Breadcrumbs />

Props

PropTypeDefaultDescription
itemsreadonly { label: string; href?: string }[]-Breadcrumb items.
labelstring"Breadcrumb"Accessible label or text.