[Vuejs]-How to Transfer between " v-text-fields " with directional keys in vue.js

0👍

You should bind both of them with v-model to the same variable declared inside data.

<v-text-field v-model="yourVar"
outlined
></v-text-field>
<v-text-field v-model="yourVar"
outlined ></v-text-field> 

The result should look like this:
enter image description here

Remember that you cannot bind directly to an object property due like you did in your example due to the way Vue works. More info here.

Leave a comment