您现在的位置是:首页 > 网站制作 > vue.js心得vue.js心得
vue实时搜索(模糊搜索)
蒙xs2021-08-04【vue.js心得】人已围观
简介计算属性
computed:{
tables: function() {
var search = this.search;
if (search) {
return this.listData.filter(function(dataNews) {
计算属性
computed:{
tables: function() {
var search = this.search;
if (search) {
return this.listData.filter(function(dataNews) {
return Object.keys(dataNews).some(function(key) {
return (
String(dataNews[key])
.toLowerCase()
.indexOf(search) > -1
);
});
});
}
return this.listData;
}
},
computed:{
tables: function() {
var search = this.search;
if (search) {
return this.listData.filter(function(dataNews) {
return Object.keys(dataNews).some(function(key) {
return (
String(dataNews[key])
.toLowerCase()
.indexOf(search) > -1
);
});
});
}
return this.listData;
}
},
Tags:
很赞哦! ()
上一篇:执行permission.js
下一篇:vue笔记