funcion/refactor-general #45

Open
atasistro wants to merge 198 commits from funcion/refactor-general into master
Showing only changes of commit 025b9239c3 - Show all commits

View file

@ -2,13 +2,16 @@
<tr>
<td>{{ this.producto.nombre }}</td>
<td class="has-text-right">
<pedidos-producto-cantidad :producto="producto"></pedidos-producto-cantidad>
<producto-cantidad :producto="producto"></producto-cantidad>
</td>
<td class="has-text-right">{{ Math.ceil(this.producto.pivot.total) }}</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
},