[Vuejs]-How to reload the data of a table with vue and axios?

0👍

Something is wrong in your buscarUsuario() logic: you are overwriting the initial correct array of usuario objects with a single object of one usuario

axios.get('http://localhost:50995/api/GetUsuario?id=' + this.busqueda)
                    .then(response => {
/* REMOVE THIS LINE */      this.usuarios = response.data,
                            this.nombre = response.data.Nombre
                    }).catch(e => {
                        console.log(e)
                    })

Leave a comment