PHP Classes

File: resources/js/Components/InputLabel.vue

Recommend this page to a friend!
  Classes of Rodrigo Faustino   Vue.js PHP CRUD Example Using Laravel Vite   resources/js/Components/InputLabel.vue   Download  
File: resources/js/Components/InputLabel.vue
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Vue.js PHP CRUD Example Using Laravel Vite
Example application to manage users and blog posts
Author: By
Last change:
Date: 5 months 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>