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

@ -12,6 +12,7 @@
type: String,
required: true
},
fieldError: [String],
hasOffset: Boolean,
isDisabled: Boolean,
label: {
@ -67,7 +68,7 @@
</button>
</UseColorMode>
</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" />
</div>
</template>