Files
GestorTareas/resources/js/Components/InputLabel.vue
2026-08-03 18:01:15 +02:00

15 lines
241 B
Vue

<script setup>
defineProps({
value: {
type: String,
},
});
</script>
<template>
<label class="form-label mb-1">
<span v-if="value">{{ value }}</span>
<span v-else><slot /></span>
</label>
</template>