[Vuejs]-Property or method "firstName" is not defined on the instance but referenced during render

0👍

While rendering the view, Vue is unable to find the properties for each of your input v-models, 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.

Leave a comment