18 lines
282 B
Vue
18 lines
282 B
Vue
<script lang="ts" setup>
|
|
import type { HTMLAttributes } from 'vue'
|
|
|
|
const props = defineProps<{
|
|
class?: HTMLAttributes['class']
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<nav
|
|
aria-label="breadcrumb"
|
|
data-slot="breadcrumb"
|
|
:class="props.class"
|
|
>
|
|
<slot />
|
|
</nav>
|
|
</template>
|