mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-27 11:41:09 -04:00
14 lines
219 B
Vue
14 lines
219 B
Vue
<template>
|
|
<nav>
|
|
<ol class="flex flex-wrap py-4 text-gray-900 rounded list-reset dark:text-gray-400">
|
|
<slot />
|
|
</ol>
|
|
</nav>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'BaseBreadcrumb',
|
|
}
|
|
</script>
|