[Vuejs]-Vue js filter search in b-table

0👍

As following the official documentation, default filtering just filters the current data array.

Filtering, when used, is applied by default to the original items array data. b-table provides several options for how data is filtered.

So, as you are using server-side pagination, you will have to implement a custom filter so it can get the filtered data from your API.

Leave a comment