1👍
✅
An axios response will contain a number of properties what you are likely looking for is response.data
try that and you should have your response assuming you are actually getting something. You can always look in the network tab to see exactly what is coming in even if it not showing on your app, just look for the call and see what the response or preview
show.
In the event that your data is not updating in the template you would need to create a key on the element that needs to update to force a rerender, this is because vue’s reactivity only works (or mostly) with primitive values not nested structures.
Source:stackexchange.com