[Vuejs]-Confused about printing "object.value" in nativescript-vue

1👍

If I had to guess is that it immediately tries to use a value that is undefined. parsedJson is defined as {} and doesn’t get initialized till later. Maybe try initializing it an empty string:

parsedJson: {
  city: {
     value:''
  }
}

Leave a comment