pedi2/resources/js/components/ProductoRow.vue

18 lines
403 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>
producto
2022-05-25 19:03:29 -03:00
<script>
export default {
props: {
producto: Object
},
}
</script>