fix(Field): avoid setting showClear to undefined (#3012)

fix #3009
This commit is contained in:
rex 2020-04-13 17:39:19 +08:00 committed by GitHub
parent ede3a674ae
commit 16be4f7171
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -133,7 +133,7 @@ VantComponent({
const { clearable, readonly } = this.data;
const { focused, value } = this;
this.setData({
showClear: clearable && focused && !!value && !readonly
showClear: !!clearable && !!focused && !!value && !readonly
});
},