0👍
✅
As per the documentation for vue-resource
, the response
object has no property data
. What you’re looking for is either response.body
or response.json()
to resolve response.body
into a JSON object.
Source:stackexchange.com