mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
17 lines
283 B
Vue
17 lines
283 B
Vue
<script setup lang="ts">
|
|
const items = [{
|
|
label: 'Home',
|
|
to: '/'
|
|
}, {
|
|
label: 'Components',
|
|
to: '/components'
|
|
}, {
|
|
label: 'Breadcrumb',
|
|
to: '/components/breadcrumb'
|
|
}]
|
|
</script>
|
|
|
|
<template>
|
|
<UBreadcrumb :items="items" separator-icon="i-mdi-slash-forward" />
|
|
</template>
|