雪幕拉开,飘然而至分外美妙,初起便显现出意境;雪落十分,然间有种喜悦在心间荡漾,纷飞飘扬尽享每一刻青春的激情;飞舞的雪花,感受芬芳的韵味,迷人心脾围绕在身旁;耳畔,时常想有沙沙的声音那样的动听,百听不厌,着迷在这一刻升起动人心怀的旋律。
本文实例为大家分享了Vue通过input筛选数据的具体代码,供大家参考,具体内容如下
<div id="app"> <input v-model='search' /> <ul> <li v-for="item in items"> <label>价格</label><span v-html="item.name"></span> <label>¥</label><span v-html="item.price"></span> </ul> </div>
new Vue({ el: '#app', data: { search: '', products: [{ name: '苹果', price: 25 }, { name: '香蕉', price: 15 }, { name: '雪梨', price: 65 }, { name: '宝马', price: 2500 }, { name: '奔驰', price: 10025 }, { name: '柑橘', price: 15 }, { name: '奥迪', price: 25 }] }, computed: { items: function() { var _search = this.search; 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; } } })
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。