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:''
}
}
- [Vuejs]-Is it possible to have a custom function to encapsulate $t function?
- [Vuejs]-For rtl languages, how to right-align v-text-field label?
Source:stackexchange.com