New-site/resources/js/Components/InputLabel.vue

15 lines
284 B
Vue
Raw Normal View History

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