new-omis/resources/js/Components/InputLabel.vue
2024-04-03 10:16:39 +05:45

15 lines
265 B
Vue

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