Cambio referencia
This commit is contained in:
parent
025b9239c3
commit
ac6fc6bc0e
1 changed files with 4 additions and 1 deletions
|
@ -34,7 +34,7 @@
|
|||
</tr>
|
||||
</tfoot>
|
||||
<tbody>
|
||||
<pedidos-producto-row v-for="producto in productos" :producto="producto" :key="producto.id"></pedidos-producto-row>
|
||||
<producto-row v-for="producto in productos" :producto="producto" :key="producto.id"></producto-row>
|
||||
</tbody>
|
||||
</table>
|
||||
<p class="has-text-centered" v-show="!mostrar_tabla">
|
||||
|
@ -45,7 +45,10 @@
|
|||
</template>
|
||||
|
||||
<script>
|
||||
import ProductoRow from "./ProductoRow.vue";
|
||||
|
||||
export default {
|
||||
components: {ProductoRow},
|
||||
data() {
|
||||
return {
|
||||
mostrar_tabla: false,
|
||||
|
|
Loading…
Add table
Reference in a new issue