PHP Classes

File: resources/js/Components/Label.vue

Recommend this page to a friend!
  Classes of Robert Devenyi   Iceburg CRM   resources/js/Components/Label.vue   Download  
File: resources/js/Components/Label.vue
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Iceburg CRM
CRM application to manage contacts
Author: By
Last change:
Date: 1 year ago
Size: 229 bytes
 

Contents

Class file image Download
<script setup> defineProps(['value']); </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>