您现在的位置是:首页 > 网站制作 > 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;
    }
  },

Tags:

很赞哦! ()

上一篇:执行permission.js

下一篇:vue笔记

文章评论

    共有条评论来说两句吧...

    用户名:

    验证码:

站点信息

  • 建站时间:2019-1-11
  • 文章统计142篇文章
  • 标签管理标签云
  • 统计数据百度统计
  • 建站,写前端联系我:扫描二维码,