vue3.0中使用Element-Plus中Select下的filter-method属性代码示例
作者:他在时间门外
这篇文章主要给大家介绍了关于vue3.0中使用Element-Plus中Select下的filter-method属性的相关资料,Filter-method用法是指从一组数据中选择满足条件的项,文中通过图文以及代码介绍的非常详细,需要的朋友可以参考下
基本使用
我们都知道Element-Plus
中Select
有个很好用的属性是filterable
,在Select
中添加即可使用,他会开启一个搜索功能
自定义查询或者获取下拉框输入值
当我们不想使用它默认的搜索方式,或者获取到下拉框中输入的值时,我们就可以使用filter-method
来实现,注意使用filterable
后在使用filter-method
的话filterable
会失效,但是不加上filterable
下拉框会输入不了值,所以还是要搭配使用
下拉框:
<el-select v-model="form.outTruckId" placeholder=" " filterable clearable :filter-method="outTruckinput" @clear="outclear" v-if="scope.row.action == 'edit'" > <el-option v-for="item in OutTruckOptionList" :key="item.keyCode" :label="item.valueCode" :value="item.keyCode" /> </el-select>
函数
// 获取下拉框的输入值 function outTruckinput(e) { // 自定义查询方法 let list = ref(); list.value = OutTruckOptionList.value; if (e) { OutTruckOptionList.value = list.value.filter((item) => { return item.valueCode.indexOf(e) > -1; }); } else { //刷新下拉列表 console.log("刷新下拉列表,重新给OutTruckOptionList.value赋值"); } }
总结
到此这篇关于vue3.0中使用Element-Plus中Select下的filter-method属性的文章就介绍到这了,更多相关Select下filter-method属性使用内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!