Files
ui/playground/compodium/examples/UBreadcrumb/UBreadcrumbExample.vue
2025-03-26 11:40:23 +01:00

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>