From 6b34748e995f569d8ae6b6419ea0c08f545ea46f Mon Sep 17 00:00:00 2001 From: "mo.duan" Date: Wed, 4 Sep 2019 11:12:44 +0800 Subject: [PATCH] Update auto-complete.vue #6161 bug fixed --- src/components/auto-complete/auto-complete.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/auto-complete/auto-complete.vue b/src/components/auto-complete/auto-complete.vue index 716224f9..7bd3ca03 100644 --- a/src/components/auto-complete/auto-complete.vue +++ b/src/components/auto-complete/auto-complete.vue @@ -113,7 +113,8 @@ computed: { inputIcon () { let icon = ''; - if (this.clearable && this.currentValue) { + //#6161 #7 + if (this.clearable && this.currentValue && !this.disabled) { icon = 'ios-close'; } else if (this.icon) { icon = this.icon;