Bind Fields instead of full Form to the Login view inputs

This commit is contained in:
Bubka
2023-10-04 10:43:59 +02:00
parent c448628e1b
commit 15733f0b38
9 changed files with 174 additions and 222 deletions

View File

@ -10,6 +10,7 @@
default: '',
required: true
},
fieldError: [String],
options: {
type: Array,
required: true
@ -33,7 +34,7 @@
</select>
</div>
</div>
<!-- <FieldError :form="form" :field="fieldName" /> -->
<FieldError v-if="fieldError != undefined" :error="fieldError" :field="fieldName" />
<p class="help" v-html="$t(help)" v-if="help"></p>
</div>
</template>