A navigation trail showing the current page location within a hierarchy. — <cs-breadcrumb-group>
Note: Items are set via the
itemsJavaScript property. See usage below.
<cs-breadcrumb-group></cs-breadcrumb-group>
<script>
const breadcrumbs = document.querySelector('cs-breadcrumb-group');
breadcrumbs.items = [
{ text: 'Home', href: '/' },
{ text: 'Services', href: '/services' },
{ text: 'Current page', href: '#' },
];
</script>
aria-labelBreadcrumbGroupProps['expandAriaLabel']
default: 'Breadcrumbs'dropdown-itemsReadonlyArray<LinkItem>requiredvisiblebooleandropdownItemClickCustomEvent<{ id: string; }>dropdownItemFollowCustomEvent<{ id: string; }>