mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-21 23:40:39 +01:00
31 lines
512 B
Vue
31 lines
512 B
Vue
<script setup lang="ts">
|
|
extendCompodiumMeta({
|
|
defaultProps: {
|
|
items: [{
|
|
label: 'Home',
|
|
to: '/'
|
|
}, {
|
|
slot: 'dropdown' as const,
|
|
icon: 'i-lucide-ellipsis',
|
|
children: [{
|
|
label: 'Documentation'
|
|
}, {
|
|
label: 'Themes'
|
|
}, {
|
|
label: 'GitHub'
|
|
}]
|
|
}, {
|
|
label: 'Components',
|
|
disabled: true
|
|
}, {
|
|
label: 'Breadcrumb',
|
|
to: '/components/breadcrumb'
|
|
}]
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<UBreadcrumb />
|
|
</template>
|