mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-23 16:53:26 +01:00
75 lines
1.7 KiB
Vue
75 lines
1.7 KiB
Vue
<template>
|
|
<div class="field" :class="{ 'pt-3' : hasOffset }">
|
|
<label :for="this.inputId(inputType,fieldName)" class="label" v-html="label"></label>
|
|
<div class="control">
|
|
<input
|
|
:disabled="isDisabled"
|
|
:id="this.inputId(inputType,fieldName)"
|
|
:type="inputType"
|
|
class="input"
|
|
v-model="form[fieldName]"
|
|
:placeholder="placeholder"
|
|
v-bind="$attrs"
|
|
v-on:change="$emit('field-changed', form[fieldName])"
|
|
/>
|
|
</div>
|
|
<field-error :form="form" :field="fieldName" />
|
|
<p class="help" v-html="help" v-if="help"></p>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'FormField',
|
|
inheritAttrs: false,
|
|
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
|
|
props: {
|
|
label: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
|
|
fieldName: {
|
|
type: String,
|
|
default: '',
|
|
required: true
|
|
},
|
|
|
|
inputType: {
|
|
type: String,
|
|
default: 'text'
|
|
},
|
|
|
|
form: {
|
|
type: Object,
|
|
required: true
|
|
},
|
|
|
|
placeholder: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
|
|
help: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
|
|
hasOffset: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
|
|
isDisabled: {
|
|
type: Boolean,
|
|
default: false
|
|
}
|
|
}
|
|
}
|
|
</script> |