[Vuejs]-How can I get it fast with text-field watch?

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),
}

Leave a comment