0👍
Thanks @tao, I read the docs before but skipped noticing this property
This is the one that solves the problem, you can link a variable to the search item and I then use your own text input box to implement the solution.
0👍
I found a nice way to do this, the question is a little bit old but just in case anyone is searching for a solution to this, set a ref like
<VueGoodTable ref="my-table">
and you can update the search box like this:
this.$refs["my-table"].globalSearchTerm = 'whatever you want';
P.S.: This won’t trigger the search though
- [Vuejs]-How can I make a message inside a v-for only appear once, if any of the items meets a certain condition?
- [Vuejs]-How can we stop vuetify 3 v-combobox from adding new items if the validation checks fail?
Source:stackexchange.com