Juan Felipe Zapata Moreno 9c6eeb5fb3 Commit Inicial
2025-08-05 09:52:38 -06:00

15 lines
262 B
Vue

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