0👍
can try to do do some delay on your search. after user typed in a few character only start to search. Here is the lodash decounce example.
import _ from 'lodash'
methods: {
onChanged: _.debounce(function (event) {
// search method here...
}, 300),
}
- [Vuejs]-Call a global filter from a method in Vue.js
- [Vuejs]-Vue dynamic import is being imported even if it is never used
Source:stackexchange.com