PHP Classes

File: resources/js/Components/InputLabel.vue

Recommend this page to a friend!
  Classes of Robert Devenyi   Iceburg SAAS PHP CRM Open Source   resources/js/Components/InputLabel.vue   Download  
File: resources/js/Components/InputLabel.vue
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Iceburg SAAS PHP CRM Open Source
Application to manage the contacts of customers
Author: By
Last change:
Date: 1 year ago
Size: 242 bytes
 

Contents

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