mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 08:28:20 +01:00
14 lines
249 B
Vue
14 lines
249 B
Vue
|
|
<script lang="ts" setup>
|
||
|
|
import type { HTMLAttributes } from "vue";
|
||
|
|
|
||
|
|
const props = defineProps<{
|
||
|
|
class?: HTMLAttributes["class"];
|
||
|
|
}>();
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<nav aria-label="breadcrumb" :class="props.class">
|
||
|
|
<slot />
|
||
|
|
</nav>
|
||
|
|
</template>
|