mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 12:14:41 +01:00
27 lines
440 B
Vue
27 lines
440 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-muted">/</span>
|
|
</template>
|
|
</UBreadcrumb>
|
|
</template>
|