laravel-vue-file-share/resources/js/Components/InputLabel.vue
2023-10-08 14:20:03 -07:00

14 lines
276 B
Vue

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