Breadcrumbs
Description
<vaadin-breadcrumbs> is a Web Component that displays the user's location
within a hierarchy as a trail of links from the root to the current page.
Properties
i18n
Type: BreadcrumbsI18n
The object used to localize this component. To change the default localization, replace this with an object that provides all properties, or just the individual properties you want to change.
The object has the following JSON structure and default values:
{
// Accessible label of the overflow button revealing collapsed items.
moreItems: 'More items'
}
See also: BreadcrumbsI18n
Types
BreadcrumbsI18n
export interface BreadcrumbsI18n {
moreItems?: string;
}