Add forms demo page

This commit is contained in:
Mert Sincan 2024-10-23 05:05:27 +01:00
parent 9f8003ad9d
commit 4929f978f2
24 changed files with 3002 additions and 22 deletions

View file

@ -0,0 +1,21 @@
<template>
<label :for="htmlFor">
<slot />
</label>
</template>
<script>
export default {
name: 'DynamicFormLabel',
inject: {
$fcDynamicFormField: {
default: undefined
}
},
computed: {
htmlFor() {
return this.$fcDynamicFormField?.$props.groupId;
}
}
};
</script>