diff --git a/src/components/select/select.vue b/src/components/select/select.vue index 523b114b..f853d30b 100644 --- a/src/components/select/select.vue +++ b/src/components/select/select.vue @@ -490,13 +490,12 @@ }, validateOption({children, elm, propsData}){ - const value = propsData.value; const label = propsData.label || ''; const textContent = (elm && elm.textContent) || (children || []).reduce((str, node) => { 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); },