Files
monica/resources/js/Components/Label.vue
T
2021-12-04 18:26:14 -05:00

13 lines
239 B
Vue

<template>
<label class="block font-medium text-sm text-gray-700">
<span v-if="value">{{ value }}</span>
<span v-else><slot /></span>
</label>
</template>
<script>
export default {
props: ['value']
}
</script>