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>
|
</tr>
|
||||||
</tfoot>
|
</tfoot>
|
||||||
<tbody>
|
<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>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<p class="has-text-centered" v-show="!mostrar_tabla">
|
<p class="has-text-centered" v-show="!mostrar_tabla">
|
||||||
|
@ -45,7 +45,10 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import ProductoRow from "./ProductoRow.vue";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
components: {ProductoRow},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
mostrar_tabla: false,
|
mostrar_tabla: false,
|
||||||
|
|
Loading…
Add table
Reference in a new issue