mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
19 lines
331 B
Vue
19 lines
331 B
Vue
<script setup lang="ts">
|
|
const items = [{
|
|
label: 'Home',
|
|
icon: 'i-heroicons-home'
|
|
}, {
|
|
icon: 'i-heroicons-cube-transparent',
|
|
label: 'Components',
|
|
to: '/components'
|
|
}, {
|
|
icon: 'i-heroicons-link',
|
|
label: 'Breadcrumb',
|
|
to: '/components/breadcrumb'
|
|
}]
|
|
</script>
|
|
|
|
<template>
|
|
<UBreadcrumb :items="items" />
|
|
</template>
|