I am using Vuetify v-text-field, and binding another element to the v-text-field so when the user type in first text field, the data will be updated in another. This is my code
<v-text-field v-model="myinput" />
<v-text-field v-bind:value="myinput" />
The model is get updated when the focus is out of the input field, means when the cursor leave the input field. But I want to update the model while I am typing. Is there a simple setting whithout using the events?