Lines Matching full:form
8 <b-form id="hostname-settings" @submit.prevent="handleSubmit">
11 <b-form-group
15 <b-form-input
17 v-model="form.hostname"
19 :state="getValidationState(v$.form.hostname)"
20 @input="v$.form.hostname.$touch()"
22 <b-form-invalid-feedback role="alert">
23 <template v-if="v$.form.hostname.required.$invalid">
24 {{ $t('global.form.fieldRequired') }}
26 <template v-if="v$.form.hostname.validateHostname.$invalid">
27 {{ $t('global.form.lengthMustBeBetween', { min: 1, max: 64 }) }}
29 </b-form-invalid-feedback>
30 </b-form-group>
33 </b-form>
39 form="hostname-settings"
75 form: {
82 this.form.hostname = this.hostname;
87 form: {
99 this.$emit('ok', { HostName: this.form.hostname });
108 this.form.hostname = this.hostname;