laravel-vue-file-share/resources/js/Components/DropdownLink.vue

19 lines
411 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-left text-sm leading-5 text-gray-300 hover:bg-gray-800 focus:outline-none focus:bg-gray-800 transition duration-150 ease-in-out"
>
<slot />
</Link>
</template>