Hello,
I'm using the matfish2/vue-table-2 (server side),
<v-server-table
:columns="columns"
:options="options"
:url="'my-url/api/'"
ref="segmentTable"
@loading="onTableLoad"
@loaded="onTableLoaded"
>
current situation : when user search (filter) something it sends requests on every keyboard type,
Example: id user types hello
it will search for h
and he
and hel
and hell
and hello
Question: how to send search request only when user type Enter ?
Thanks
Top comments (0)