Files
2024-09-01 18:54:23 +05:00

16 lines
206 B
Vue

<template>
<label :for="labelFor" class="inline-block leading-tight">
<slot />
</label>
</template>
<script>
export default {
props: {
labelFor: {
type: String,
},
},
}
</script>