[Vuejs]-Capture the form inputs in the console

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>

Leave a comment