PHP Classes

File: resources/js/Components/DropdownLink.vue

Recommend this page to a friend!
  Classes of Stanley Aloh   Inventory Assignment   resources/js/Components/DropdownLink.vue   Download  
File: resources/js/Components/DropdownLink.vue
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Inventory Assignment
Manage the inventory of stored products
Author: By
Last change:
Date: 25 days ago
Size: 412 bytes
 

Contents

Class file image Download
<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 leading-5 text-gray-700 transition duration-150 ease-in-out hover:bg-gray-100 focus:bg-gray-100 focus:outline-none" > <slot /> </Link> </template>