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));
Source:stackexchange.com