tethys.backend/resources/js/Components/unused/DropdownLink.vue

10 lines
293 B
Vue
Raw Normal View History

2023-03-03 15:54:28 +00:00
<script setup>
import { Link } from '@inertiajs/vue3';
</script>
<template>
<Link class="block w-full px-4 py-2 text-left text-sm leading-5 text-gray-700 hover:bg-gray-100 focus:outline-none focus:bg-gray-100 transition duration-150 ease-in-out">
<slot />
</Link>
</template>