pedi2/resources/js/components/SubpedidoRow.vue

23 lines
458 B
Vue
Raw Normal View History

<template>
<tr>
<td>{{ subpedido.nombre }}</td>
<td>{{ subpedido.total }}</td>
<td><boton-admin-subpedido-row :subpedido="subpedido"></boton-admin-subpedido-row></td>
</tr>
</template>
<script>
import BotonAdminSubpedidoRow from "./BotonAdminSubpedidoRow";
export default {
name: "SubpedidoRow",
components: {BotonAdminSubpedidoRow},
props: {
subpedido: Object
}
}
</script>
<style scoped>
</style>