PHP Classes

File: resources/js/Components/InputLabel.vue

Recommend this page to a friend!
  Classes of Celso   DB Sync   resources/js/Components/InputLabel.vue   Download  
File: resources/js/Components/InputLabel.vue
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: DB Sync
Synchronize databases between environments
Author: By
Last change:
Date: 1 month ago
Size: 284 bytes
 

Contents

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