primevue-mirror/apps/showcase/doc/forms/dynamic/DynamicFormLabel.vue

14 lines
280 B
Vue

<template>
<label :for="htmlFor">
<slot />
</label>
</template>
<script setup>
import { computed, inject } from 'vue';
const $fcDynamicFormField = inject('$fcDynamicFormField', undefined);
const htmlFor = computed(() => $fcDynamicFormField?.groupId);
</script>