How to delay VueJS v-model?

3

So that the information is changed when the focus of the field comes out, and not as it is typed.

    
asked by anonymous 07.07.2016 / 20:50

1 answer

4

The same can be obtained through the lazy

Example:

<input v-model="msg" lazy>

    
07.07.2016 / 20:50