diff --git a/packages/input/src/input.vue b/packages/input/src/input.vue index 1d5b4d683..8e8777851 100644 --- a/packages/input/src/input.vue +++ b/packages/input/src/input.vue @@ -122,7 +122,9 @@ data() { return { - currentValue: this.value === undefined ? '' : this.value, + currentValue: this.value === undefined || this.value === null + ? '' + : this.value, textareaCalcStyle: {}, prefixOffset: null, suffixOffset: null,