funcion/nueva-lista-de-productos #29
|
@ -11,7 +11,10 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
Event.$on('sync-subpedido', (cantidad,_) => this.sincronizar(cantidad));
|
Event.$on('sync-subpedido', (cantidad,productoId) => {
|
||||||
|
if (this.producto.id === productoId)
|
||||||
|
this.sincronizar(cantidad);
|
||||||
|
});
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
decrementar() {
|
decrementar() {
|
||||||
|
|
Loading…
Reference in New Issue