Teren-app/resources/js/Components/InputLabel.vue
Simon Pocrnjič 90a5858320 first commit
2024-10-28 21:08:16 +01:00

13 lines
242 B
Vue

<script setup>
defineProps({
value: 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>