Iview select component drop-down items problem

<FormItem label="">
    <Select v-model="queryForm.csrMoneyTypeEquals" filterable clearable>
    // filterable 
        <Option v-for="(item, index) in csrMoneyTypeList" :value="item.value" :key="index">{{ item.text }}</Option>
    </Select>
</FormItem>
<FormItem>
    <div class="query-btn">
        <a class="show-more" @click="isShowMore = !isShowMore">
            <Icon type="minus-round" v-show="isShowMore"></Icon>
            <Icon type="plus-round" v-show="!isShowMore"></Icon>
            <span v-show="!isShowMore"></span>
            <span v-show="isShowMore"></span>
        </a>
        <Button type="ghost" @click="clearQueryData"></Button>
        <Button type="primary" @click="queryData"></Button>
    </div>
</FormItem>
clearQueryData () {
    this.queryForm = {}; //  null 
    this.queryData();
}
Apr.22,2021

the code is not pasted completely, and I can't see the problem.


has not solved A, I encountered the same problem, very troubled

Menu