How to apply table search & filter in metronic kt-datatables:
component url : https://preview.keenthemes.com/metronic8/vue/docs/#/kt-datatables
Just add input event to your form elements and in trigger function make your search requests.
<input
type="text"
v-model="search"
@input="searchItems()"
class="form-control form-control-solid w-250px ps-15"
placeholder="Search Customers"
/>
const searchItems = () => {
};