mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
Co-authored-by: Eduard Aymerich <eduardaymerich@gmail.com> Co-authored-by: Benjamin Canac <canacb1@gmail.com>
18 lines
280 B
Vue
18 lines
280 B
Vue
<script setup>
|
|
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" />
|
|
</template>
|