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:
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.
Source:stackexchange.com