pedi2/resources/js/components/pedidos/ProductoRow.vue

22 lines
530 B
Vue
Raw Normal View History

2022-05-25 19:03:29 -03:00
<template>
<tr>
<td>{{ this.producto.nombre }}</td>
2024-09-15 12:48:34 -03:00
<td class="has-text-right">
<producto-cantidad :producto="producto"></producto-cantidad>
</td>
2023-09-09 13:32:49 -03:00
<td class="has-text-right">{{ Math.ceil(this.producto.pivot.total) }}</td>
2022-05-25 19:03:29 -03:00
</tr>
</template>
<script>
2024-09-15 18:09:23 -03:00
import ProductoCantidad from './Producto/ProductoCantidad.vue';
export default {
components: {
ProductoCantidad,
},
2022-05-25 19:03:29 -03:00
props: {
producto: Object
},
}
</script>