Quitado redondeo
This commit is contained in:
parent
8799446e57
commit
025b9239c3
1 changed files with 5 additions and 2 deletions
|
@ -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
|
||||
},
|
||||
|
|
Loading…
Add table
Reference in a new issue