[Vuejs]-I can not catch response.data in axios

0👍

That console log [{...}] means you have an array with an object. So probably: [{Autorizado:true}]. There is no response.data.Autorizado, but there should be a response.data[0].Autorizado.

Leave a comment