diff --git a/src/components/select/select.vue b/src/components/select/select.vue index ea5c7189..786174ee 100644 --- a/src/components/select/select.vue +++ b/src/components/select/select.vue @@ -496,7 +496,7 @@ const nodeText = node.elm ? node.elm.textContent : node.text; return `${str} ${nodeText}`; }, '') || ''; - const stringValues = JSON.stringify([value, label, textContent]); + const stringValues = JSON.stringify([label, textContent]); const query = this.query.toLowerCase().trim(); return stringValues.toLowerCase().includes(query); },