I\'m bashing my head against an error I can\'t work out how to fix. I have the following;
JSON
{\"products\":
[
{
\"product_id\" : \"123
this.$http.get('https://pokeapi.co/api/v2/pokemon')
.then(response => {
if(response.status === 200)
{
this.usuarios = response.data.results.map(usuario => {
return { name: usuario.name, url: usuario.url, captched: false } })
}
})
.catch( error => { console.log("Error al Cargar los Datos: " + error ) } )