PHP Classes

File: resources/js/Components/SelectInput.vue

Recommend this page to a friend!
  Classes of Stanley Aloh   Inventory Assignment   resources/js/Components/SelectInput.vue   Download  
File: resources/js/Components/SelectInput.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: 28 days ago
Size: 372 bytes
 

Contents

Class file image Download
<script setup> import { onMounted } from 'vue'; defineProps(['modelValue']); defineEmits(['update:modelValue']); </script> <template> <select :value="modelValue" @input="$emit('update:modelValue', $event.target.value)" class="rounded-md border-gray-300 shadow-sm focus:border-indigo-500 focus:ring-indigo-500"> <slot></slot> </select> </template>