PHP Classes

File: resources/js/Components/InputLabel.vue

Recommend this page to a friend!
  Classes of Stanley Aloh   Inventory Assignment   resources/js/Components/InputLabel.vue   Download  
File: resources/js/Components/InputLabel.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: 265 bytes
 

Contents

Class file image Download
<script setup> defineProps({ value: { type: String, }, }); </script> <template> <label class="block text-sm font-medium text-gray-700"> <span v-if="value">{{ value }}</span> <span v-else><slot /></span> </label> </template>