0👍
✅
You should bind the form
property fields to the inputs like v-model="form.name"
and v-model="form.email"
…, and remove the other properties name
,email
and password
:
<v-text-field
v-model="form.email"
:rules="emailRules"
label="E-mail"
outlined
required
></v-text-field>
Source:stackexchange.com