[Vuejs]-Watching for form data in nuxtjs

0๐Ÿ‘

I was missing the address data in my userdata. I managed to fix my problem simply by adding it as an empty string.

<script>
export default {
   data() {
     return {
      userdata: {
        address: "", //// Adding this solved my problem
        companydata: {}
      }
     }
   }
}

.....
<script>

Leave a comment