diff --git a/src/components/input/UserFormInput.vue b/src/components/input/UserFormInput.vue index 4e0217d..54024ec 100644 --- a/src/components/input/UserFormInput.vue +++ b/src/components/input/UserFormInput.vue @@ -11,9 +11,10 @@ class="form-control" :type="type" @input="updateInput" - :value="value" + :value="computedValue" :maxLength="maxlength" :placeholder="title" + @blur="$emit('blur')" /> @ localhost.co.kr @@ -23,78 +24,90 @@ class="form-control" :type="type" @input="updateInput" - :value="value" + :value="computedValue" :maxLength="maxlength" :placeholder="title" + @blur="$emit('blur')" /> -