Strongly request the iview select component not to filter again based on label and value after setting remote-methods

A bit of optimization advice on iview select components
question:
when both the remote-method property and the filterable property are set, and the custom template is used to customize the style.
I have returned the filtered options from the background based on keywords through the method defined by remote-method , which needs to be displayed in a custom format. But the filterable attribute will still work, and it will filter through the keywords I have set based on label and value . Unfortunately, due to special presentation requirements, no matching options can be found in label and value. As a result, there is data in my candidate data, but the goose can"t show it.
solution:
hopes that when the remote-method method is set, it will not be filtered again. Now that the business logic of the search has been handed over to the user, the framework itself should not go through it again. Strongly request the iview development team to accept the proposal.
thanks to the iview team!

May.18,2022

can be solved in this way temporarily. Replace its filter function

<Select
ref="select"
v-model="model13"
filterable
remote
clearable
:remote-method="remoteMethod1"
:loading="loading1"
label-in-value
\>
<Option
v-for="optioninoptions1"
:value="option.entyId"
:key="option.entyId"
:label="option.label"
></Option>

</Select>
mounted(){
 this.$nextTick(()=>{
      // 
this.$refs.select.validateOption=()=>true;
}); 
}

if it doesn't change much, change the source code yourself. Sometimes you can't wait for someone else. If it is really necessary, just mention a pr


feel that iview is immature and dare not use it, as follows
I don't know if you have such a problem
https://jsfiddle.net/jLf67bqa/

Menu