mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
21 lines
356 B
Vue
21 lines
356 B
Vue
<template>
|
|
<label :for="htmlFor">
|
|
<slot />
|
|
</label>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'DynamicFormLabel',
|
|
inject: {
|
|
$fcDynamicFormField: {
|
|
default: undefined
|
|
}
|
|
},
|
|
computed: {
|
|
htmlFor() {
|
|
return this.$fcDynamicFormField?.$props.groupId;
|
|
}
|
|
}
|
|
};
|
|
</script>
|