diff --git a/src/components/input-number/input-number.vue b/src/components/input-number/input-number.vue index 3b10de80..3a1b3305 100644 --- a/src/components/input-number/input-number.vue +++ b/src/components/input-number/input-number.vue @@ -25,7 +25,7 @@ @keydown.stop="keyDown" @change="change" :name="name" - :value="value"> + :value="currentValue"> diff --git a/src/components/input/input.vue b/src/components/input/input.vue index fc29c840..c05f739e 100644 --- a/src/components/input/input.vue +++ b/src/components/input/input.vue @@ -39,7 +39,7 @@ :maxlength="maxlength" :readonly="readonly" :name="name" - :value="value" + :value="currentValue" :autofocus="autofocus" @keyup.enter="handleEnter" @keyup="handleKeyup"