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