mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
22 lines
457 B
Vue
22 lines
457 B
Vue
<script setup lang="ts">
|
|
const links = [{
|
|
label: 'Home',
|
|
icon: 'i-heroicons-home',
|
|
to: '/'
|
|
}, {
|
|
label: 'Navigation',
|
|
icon: 'i-heroicons-square-3-stack-3d'
|
|
}, {
|
|
label: 'Breadcrumb',
|
|
icon: 'i-heroicons-link'
|
|
}]
|
|
</script>
|
|
|
|
<template>
|
|
<UBreadcrumb :links="links" :ui="{ ol: 'gap-x-3', li: 'gap-x-3' }">
|
|
<template #divider>
|
|
<span class="w-8 h-1 rounded-full bg-gray-300 dark:bg-gray-700" />
|
|
</template>
|
|
</UBreadcrumb>
|
|
</template>
|