I have a property that comes from axios.get.
It's defined in my data as null (or '' or [])
The axios call is in a created hook.
When the app is first loaded the console fills up with
Error in render: "TypeError: Cannot read property 'service' of null"
Of course, it actually shows the information correctly on the webpage, because service is not null, but this error is apparently thrown before axios fetches the data.
What's the best approach here?