Vue Tables 2 - Custom filters

后端 未结 4 948
栀梦
栀梦 2021-02-14 18:26

I\'m trying to use this https://github.com/matfish2/vue-tables-2 with Vue 2.1.8.

And it\'s working perfectly BUT I need to use custom filters to format some fields based

4条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-02-14 18:54

    Updated working fiddle for anyone who wants to play around. I still am not sure how to make it work with nested, single page components.

    customFilters: [{
      name: 'alphabet',
      callback: function(row, query) {
        return row.name[0] == query;
      }
    }]
    

提交回复
热议问题