mirror of
https://github.com/Xevion/the-office.git
synced 2026-01-31 02:26:13 -06:00
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>
|