PHP Classes

File: resources/js/Components/InputError.vue

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

Contents

Class file image Download
<script setup> defineProps({ message: { type: String, }, }); </script> <template> <div v-show="message"> <p class="text-sm text-red-600"> {{ message }} </p> </div> </template>