automngr/resources/js/Components/BreadCrumb.vue

15 lines
246 B
Vue

<template>
<inertia-link :href="href" class="text-indigo-600 hover:text-indigo-400 transition" >
{{ text }} /
</inertia-link>
</template>
<script>
export default {
props: {
href: String,
text: String,
},
};
</script>