diff --git a/playground/pages/breadcrumb.vue b/playground/pages/breadcrumb.vue
index 6ee53117..3d5df467 100644
--- a/playground/pages/breadcrumb.vue
+++ b/playground/pages/breadcrumb.vue
@@ -16,7 +16,8 @@ const items = [{
label: 'Components',
disabled: true
}, {
- label: 'Breadcrumb'
+ label: 'Breadcrumb',
+ to: '/breadcrumb'
}]
diff --git a/src/runtime/components/Breadcrumb.vue b/src/runtime/components/Breadcrumb.vue
index 90315262..7e20c014 100644
--- a/src/runtime/components/Breadcrumb.vue
+++ b/src/runtime/components/Breadcrumb.vue
@@ -56,21 +56,23 @@ const ui = computed(() => tv({ extend: breadcrumb, slots: props.ui })())
-
-
-
-
-
-
-
-
-
-
- {{ item.label }}
+
+
+
+
+
+
-
-
-
+
+
+ {{ item.label }}
+
+
+
+
+
+
diff --git a/test/components/Breadcrumb.spec.ts b/test/components/Breadcrumb.spec.ts
index 7afb7754..31d55a68 100644
--- a/test/components/Breadcrumb.spec.ts
+++ b/test/components/Breadcrumb.spec.ts
@@ -15,6 +15,7 @@ describe('Breadcrumb', () => {
disabled: true
}, {
label: 'Breadcrumb',
+ to: '/breadcrumb',
icon: 'i-heroicons-link',
slot: 'custom'
}]
diff --git a/test/components/__snapshots__/Breadcrumb.spec.ts.snap b/test/components/__snapshots__/Breadcrumb.spec.ts.snap
index 4e596231..437389b7 100644
--- a/test/components/__snapshots__/Breadcrumb.spec.ts.snap
+++ b/test/components/__snapshots__/Breadcrumb.spec.ts.snap
@@ -7,7 +7,7 @@ exports[`Breadcrumb > renders with class correctly 1`] = `
- Navigation
- - Breadcrumb
+ - Breadcrumb
"
@@ -20,7 +20,7 @@ exports[`Breadcrumb > renders with custom slot correctly 1`] = `
Navigation
- Custom slot
+ Custom slot
"
@@ -33,7 +33,7 @@ exports[`Breadcrumb > renders with item slot correctly 1`] = `
Item slot
- Breadcrumb
+ Breadcrumb
"
@@ -46,7 +46,7 @@ exports[`Breadcrumb > renders with item-label slot correctly 1`] = `
Item label slot
- Breadcrumb
+ Breadcrumb
"
@@ -59,7 +59,7 @@ exports[`Breadcrumb > renders with item-leading slot correctly 1`] = `
Item leading slotNavigation
- Breadcrumb
+ Breadcrumb
"
@@ -72,7 +72,7 @@ exports[`Breadcrumb > renders with item-trailing slot correctly 1`] = `
NavigationItem trailing slot
- Breadcrumb
+ Breadcrumb
"
@@ -85,7 +85,7 @@ exports[`Breadcrumb > renders with items correctly 1`] = `
Navigation
- Breadcrumb
+ Breadcrumb
"
@@ -98,7 +98,7 @@ exports[`Breadcrumb > renders with separator slot correctly 1`] = `
/
Navigation
/
- Breadcrumb
+ Breadcrumb
"
@@ -111,7 +111,7 @@ exports[`Breadcrumb > renders with separatorIcon correctly 1`] = `
Navigation
- Breadcrumb
+ Breadcrumb
"
@@ -124,7 +124,7 @@ exports[`Breadcrumb > renders with ui correctly 1`] = `
Navigation
- Breadcrumb
+ Breadcrumb
"