<el-selectref="selectDom"v-model="form.diagnosisIds":remote-method="remoteMethod"placeholder="请选择"clearablefilterablemultipleremote@visible-change="templateTagChange"><el-optionv-for="item in relationList":key="item.id":label="item.name":value="item.id"/></el-select><script>exportdefault{...
在开发一个练手项目的时候,需要一个远程搜索的下拉选择组件; elementui自带的el-select支持远程搜索;...
在el-select组件中实现远程搜索并回显中文,你可以按照以下步骤进行配置和处理: 确认el-select组件已正确引入并配置远程搜索功能: 确保你的项目中已经引入了Element UI库,并且el-select组件已经正确配置为远程搜索模式。这通常涉及到设置filterable属性为true,以及使用remote、remote-method和loading等属性来配置远程搜索功能...