eliminados parametros innecesarios y evento vacío que tiraba error
This commit is contained in:
parent
97139905cc
commit
43f2a1e928
|
@ -8,26 +8,25 @@
|
||||||
<i class="fas fa-edit"></i>
|
<i class="fas fa-edit"></i>
|
||||||
</span>
|
</span>
|
||||||
</button></td>
|
</button></td>
|
||||||
<td><button @click.capture="eliminarProducto(producto)" class="button is-danger">
|
<td><button @click.capture="eliminarProducto()" class="button is-danger">
|
||||||
<span class="icon">
|
<span class="icon">
|
||||||
<i class="fas fa-trash-alt"></i>
|
<i class="fas fa-trash-alt"></i>
|
||||||
</span>
|
</span>
|
||||||
</button></td>
|
</button></td>
|
||||||
</tr>
|
</tr>
|
||||||
</template>
|
</template>
|
||||||
|
producto
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
props: {
|
props: {
|
||||||
producto: Object
|
producto: Object
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
seleccionarProducto(producto) {
|
seleccionarProducto() {
|
||||||
Event.$emit("producto-seleccionado",producto);
|
Event.$emit("producto-seleccionado",this.producto);
|
||||||
},
|
},
|
||||||
eliminarProducto(producto) {
|
eliminarProducto() {
|
||||||
Event.$emit("sync-subpedido", 0, this.producto.id);
|
Event.$emit("sync-subpedido", 0, this.producto.id);
|
||||||
Event.$emit("sync-subpedido");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue