antd vue2.8 a-select 下拉框模糊查询失效
模糊查询需求: 按label属性来查
1.模糊查询的功能参数 show-search
2.在每一个下拉框上写上label属性
3.配置optionFilterProp属性,指定按label来匹配查找
<a-select v-model="selectValue" show-search optionFilterProp="label">
<a-select-option v-for="item of opts" :key="item.id" :value="item.id" :label="item.name">
{{ item.name }}
</a-select-option>
</a-select>