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;