mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-08 16:37:15 +00:00
13 lines
280 B
Vue
13 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>
|