ant-design-vue select 下拉框不好用解决
将optionFilterProp
设置为label
和a-select-option
的:label="item.name"
自定义属性
<a-selectshowSearchallowClearoptionFilterProp="label"placeholder="请选择选项"style="width: 120px; margin-right: 16px"><a-select-option v-for="item in options" :key="item.code" :value="item.id" :label="item.name">{{ item.name }}</a-select-option>
</a-select>
参考:
ant-design-vue select 使用汇总_optionlabelprop-CSDN博客