[Vuejs]-How to add and item to an Array using Vue JS?

0👍

In the callback function of your ajax call, this does not point to the vm instance. Just change it to:

this.$http.post('/api/addProducto', codigo).success(function (producto) {
    this.productos.push(producto);
}.bind(this));

Leave a comment