vue js 中简单的搜索功能
2021-05-17 01:28
阅读:701
YPE html>
标签:model set .so head some string func mode str
- {{item.name}},价格:¥{{item.price}}
if (search) {
return this.products.filter(function(product) {
return Object.keys(product).some(function(key) {
return String(product[key]).toLowerCase().indexOf(search) > -1
})
})
}
return this.products;
}
}
})
vue js 中简单的搜索功能
标签:model set .so head some string func mode str
原文地址:http://www.cnblogs.com/pptt/p/7746102.html
评论
亲,登录后才可以留言!