diff --git a/src/components/select/select.vue b/src/components/select/select.vue index 0577ed73..ebf85022 100644 --- a/src/components/select/select.vue +++ b/src/components/select/select.vue @@ -357,7 +357,7 @@ state = true; const $options = findComponentsDownward(this, 'iOption'); if ($options && $options.length) { - if ($options.find(item => item.showLabel === this.query)) state = false; + if ($options.find(item => item.optionLabel === this.query)) state = false; } } return state;