From a2f27a80ca94e038ae95bc2b3ef2c64d16153ff1 Mon Sep 17 00:00:00 2001 From: Lawrence Lee Date: Wed, 19 Jul 2017 16:37:07 +0800 Subject: [PATCH] fix #1084 --- src/components/input-number/input-number.vue | 2 +- src/components/input/input.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/input-number/input-number.vue b/src/components/input-number/input-number.vue index 3b10de8..3a1b330 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 fc29c84..c05f739 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" -- libgit2 0.21.4