0👍
While rendering the view, Vue is unable to find the properties for each of your input v-model
s, since the fields are in the form object. You can either refer to them as form.firstName
, form.lastName
etc or move them out of the object in the data()
section.
Source:stackexchange.com