mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 12:14:41 +01:00
23 lines
426 B
Vue
23 lines
426 B
Vue
<script setup lang="ts">
|
|
import type { BreadcrumbItem } from '@nuxt/ui'
|
|
|
|
const items: BreadcrumbItem[] = [{
|
|
label: 'Home',
|
|
to: '/'
|
|
}, {
|
|
label: 'Components',
|
|
to: '/components'
|
|
}, {
|
|
label: 'Breadcrumb',
|
|
to: '/components/breadcrumb'
|
|
}]
|
|
</script>
|
|
|
|
<template>
|
|
<UBreadcrumb :items="items">
|
|
<template #separator>
|
|
<span class="mx-2 text-(--ui-text-muted)">/</span>
|
|
</template>
|
|
</UBreadcrumb>
|
|
</template>
|