Complete the code to bind the input value lazily using v-model.
<input type="text" v-model[1]="username" />
The .lazy modifier updates the model only when the input loses focus, not on every input event.
Complete the code to automatically convert the input value to a number using v-model.
<input type="text" v-model[1]="age" />
The .number modifier converts the input string to a number automatically.
Fix the error in the code to trim whitespace from the input value using v-model.
<input type="text" v-model[1]="email" />
The .trim modifier removes whitespace from the input value automatically.
Fill both blanks to bind the input with v-model that trims whitespace and updates lazily.
<input type="text" v-model[1][2]="comment" />
Combining .trim and .lazy trims spaces and updates the model only on blur.
Fill all three blanks to bind the input with v-model that trims, converts to number, and updates lazily.
<input type="text" v-model[1][2][3]="score" />
Combining .trim, .number, and .lazy modifiers trims whitespace, converts the input to a number, and updates the model only on blur.