Files
nosys_libs/vueNoSys/src/components/labels/Label.vue
2026-01-25 13:55:46 +10:00

12 lines
237 B
Vue

<template>
<label :for="forId" :class="['block text-sm font-medium text-gray-700 dark:text-gray-300', className]">
<slot></slot>
</label>
</template>
<script setup>
defineProps({
forId: String,
className: String
})
</script>