10 lines
191 B
Vue
10 lines
191 B
Vue
<template>
|
|
<label class="block text-sm font-medium text-gray-900 dark:text-zinc-100">
|
|
<slot/>
|
|
</label>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
name: 'FormLabel',
|
|
}
|
|
</script> |