[antdv: Select] optionFilterProp not support children, please use label instead
时间: 2024-12-02 14:13:24 浏览: 13
在 Ant Design Vue 中,`optionFilterProp` 不支持 `children` 属性,请改用 `label` 属性。以下是修改后的代码示例:
```html
<a-select
v-model="loginObject.companyCode"
show-search
size="large"
@select="getHallCode"
option-filter-prop="label"
>
<a-select-option
v-for="item in companiesInfo"
:key="item.value"
:value="item.value"
:label="item.text"
>
{{ item.text }}
</a-select-option>
</a-select>
```
在这个示例中,`option-filter-prop` 被设置为 `"label"`,并且每个 `<a-select-option>` 元素都添加了 `:label="item.text"` 属性。这样可以确保搜索功能正常工作。
阅读全文