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>
Source:stackexchange.com