docs(breadcrumb): update examples

This commit is contained in:
Benjamin Canac
2024-07-22 16:07:45 +02:00
parent f4db34bf1c
commit 640de11ec7
3 changed files with 3 additions and 3 deletions

View File

@@ -0,0 +1,20 @@
<script setup lang="ts">
const items = [{
label: 'Home',
to: '/'
}, {
label: 'Components',
to: '/components'
}, {
label: 'Breadcrumb',
to: '/components/breadcrumb'
}]
</script>
<template>
<UBreadcrumb :items="items">
<template #separator>
<span class="mx-2 text-gray-500 dark:text-gray-400">/</span>
</template>
</UBreadcrumb>
</template>