pedi2/resources/js/components/pedidos/ProductoRow.vue
2025-05-16 15:03:51 -03:00

19 lines
488 B
Vue

<template>
<tr>
<td>{{ this.producto.nombre }}</td>
<td class="has-text-right">
<producto-cantidad :producto="producto"></producto-cantidad>
</td>
<td class="has-text-right">{{ this.producto.pivot.total }}</td>
</tr>
</template>
<script>
import ProductoCantidad from "./ProductoCantidad.vue";
export default {
components: { ProductoCantidad },
props: {
producto: Object
},
}
</script>