You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for maintaining this.
I need lazy behaviour on v-model, like v-model.lazy="name". But it doesn't seem to be implemented in this component.
My problem: the component is bound to a data property 'name'. On change of this property, I trigger a filter method that filters through hundreds of objects. ATM my filter method is being triggered on every keystroke which is bad for performance.
Would be great if you could implement the native .lazy modifier on v-model.
The text was updated successfully, but these errors were encountered:
Yeah, I can see the value in this idea. Honestly, there’s probably a lot of other things that need work first, but I’ll keep this on the list and will be interested if others see the need as well.
A workaround for you might be to use denounce to limit calls while typing, but obviously I don’t know hire you’re implementing this so that suggestion might not work.
Thanks for maintaining this.
I need lazy behaviour on v-model, like
v-model.lazy="name"
. But it doesn't seem to be implemented in this component.My problem: the component is bound to a data property 'name'. On change of this property, I trigger a filter method that filters through hundreds of objects. ATM my filter method is being triggered on every keystroke which is bad for performance.
Would be great if you could implement the native .lazy modifier on v-model.
The text was updated successfully, but these errors were encountered: