vue实现输入框搜索功能

 
 
 data(){
searchVal: '',
items: [
{
'tenantId': 36045,
'orgId': 3604500002,
'orgName': '开发环境测试-1',
'type': null,
'activate': '1'
},
{
'tenantId': 36053,
'orgId': 3605300001,
'orgName': '52-测试账号(校区)',
'type': null,
'activate': '1'
},
{
'tenantId': 36053,
'orgId': 3605300008,
'orgName': '测试-大爷',
'type': null,
'activate': '1'
}
],
}
 

总部

校区

 
 computed: {
search() {
var item = this.items.filter(ele => {
if (ele.orgName.match(this.searchVal)) {
return ele
}
})
return item
}
 
 
 
话不多讲,有这三块代码就够了。

转载于:https://www.cnblogs.com/bbldhf/p/11245413.html

你可能感兴趣的:(vue实现输入框搜索功能)