Juan Felipe Zapata Moreno c6c2f78d16 Initial Commit
2025-08-12 09:36:02 -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>