Skip to content
Theme:

Ui3nBreadcrumbs

Breadcrumbs navigation component for displaying hierarchical paths and navigation trails.

Ui3nBreadcrumbs

Container component for breadcrumb items.

Props

NameTypeDefaultDescription
separatorstring | undefined"/"

Separator between breadcrumbs

disabledboolean | undefinedfalse

Whether the breadcrumbs are disabled

Slots

Slot NameScope Props (v-slot)Description
#separator

Global separator slot for the entire chain

#default

Default slot

Ui3nBreadcrumb

Individual breadcrumb item component.

Props

NameTypeDefaultDescription
separatorstring | undefined

Separator between breadcrumbs

isActiveboolean | undefinedfalse

Whether the breadcrumb is active

disabledboolean | undefinedfalse

Whether the breadcrumb is disabled

Events

Event NameArguments / Value TypeDescription
clickvalue: MouseEvent

Slots

Slot NameScope Props (v-slot)Description
#separator

Separator slot

#default

Default slot

Usage Examples

Basic usage

Basic usage

Simple breadcrumbs with multiple navigation levels

Home
/
Products
/
Category
/
Current Page
/

Custom separator

Custom separator

Using different separator characters like arrow, chevron or pipe

Arrow separator:
Home
Products
Details
Chevron separator:
Home
Products
Details
Pipe separator:
Home
|
Products
|
Details
|

Click handling

Click handling

Active breadcrumbs with click event handling for navigation

Home
/
Products
/
Electronics
/
Smartphones
/
Current path: Home / Products / Electronics / Smartphones

Disabled state

Disabled state

Disabled breadcrumbs - entire container or individual items

All disabled:
Home
/
Products
/
Details
/
Individual disabled:
Home
/
Products (disabled)
/
Category
/
Details
/

Custom separator slot

Custom separator slot

Using the separator slot for custom icons or complex separators

With icon separator (Defined once on container):
Home
Products
Details
With local fallback override:
Dashboard
Settings
/
Profile
/