[Vuejs]-VueJS: Uncaught (in promise) TypeError: Cannot read property 'rol' of undefined

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.

Leave a comment