Files
web/resources/js/Components/InputLabel.vue
2024-12-05 11:45:20 +03:00

15 lines
284 B
Vue

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