Merge pull request #212 from Safelite/feature/Digital/SSR-319.1

SSR 319
This commit is contained in:
shnsuku 2023-03-27 11:17:44 +05:30 committed by GitHub
commit a24441ede2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,6 +16,7 @@
class="form-control" class="form-control"
v-model.trim="value" v-model.trim="value"
v-maska="mask" v-maska="mask"
v-on:focus="blurInput"
:type="type" :type="type"
:ref="inputId" :ref="inputId"
:id="inputId" :id="inputId"
@ -136,7 +137,14 @@ export default {
this.$emit("update:modelValue", value); this.$emit("update:modelValue", value);
} },
blurInput() {
if (this.$refs.dateOfLossField) {
this.$refs.dateOfLossField.blur();
}
}
}, },
computed: { computed: {
questionText() { questionText() {