mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-15 12:39:35 +01:00
Co-authored-by: Eduard Aymerich <eduardaymerich@gmail.com> Co-authored-by: Benjamin Canac <canacb1@gmail.com>
21 lines
399 B
Vue
21 lines
399 B
Vue
<script setup>
|
|
const links = [{
|
|
label: 'Home',
|
|
to: '/'
|
|
}, {
|
|
label: 'Navigation'
|
|
}, {
|
|
label: 'Breadcrumb'
|
|
}]
|
|
</script>
|
|
|
|
<template>
|
|
<UBreadcrumb :links="links">
|
|
<template #default="{ link, isActive, index }">
|
|
<UBadge :color="isActive ? 'primary' : 'gray'" class="rounded-full">
|
|
{{ index + 1 }}. {{ link.label }}
|
|
</UBadge>
|
|
</template>
|
|
</UBreadcrumb>
|
|
</template>
|