21 lines
407 B
Vue
21 lines
407 B
Vue
<script setup>
|
|
import { Link } from '@inertiajs/vue3';
|
|
|
|
defineProps({
|
|
href: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<Link
|
|
:href="href"
|
|
class="block w-full px-4 py-2 text-start text-sm font-semibold leading-5 transition duration-150 ease-in-out focus:outline-none"
|
|
style="color:#1e293b;"
|
|
>
|
|
<slot />
|
|
</Link>
|
|
</template>
|