From f56af5ef1ed186d05d94c4da3d815bfd40cac469 Mon Sep 17 00:00:00 2001 From: josedario87 Date: Fri, 21 Nov 2025 22:04:42 -0600 Subject: [PATCH] Fix: Corregir nombres de componentes de lotes y operaciones MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Renombrar componentes para evitar duplicación de prefijos: - lotes/LotesTable.vue → lotes/Table.vue (LotesTable) - lotes/LoteForm.vue → lotes/Form.vue (LotesForm) - lotes/LoteCard.vue → lotes/Card.vue (LotesCard) - operaciones/OperacionesTable.vue → operaciones/Table.vue - operaciones/OperacionForm.vue → operaciones/Form.vue Actualizar referencias en app.vue para usar nombres correctos --- nuxt4/app/app.vue | 10 +- .../lotes/{LoteCard.vue => Card.vue} | 0 .../lotes/{LoteForm.vue => Form.vue} | 0 .../lotes/{LotesTable.vue => Table.vue} | 0 .../{OperacionForm.vue => Form.vue} | 0 .../{OperacionesTable.vue => Table.vue} | 0 nuxt4/package-lock.json | 428 +++++++++++------- nuxt4/package.json | 2 +- 8 files changed, 278 insertions(+), 162 deletions(-) rename nuxt4/app/components/lotes/{LoteCard.vue => Card.vue} (100%) rename nuxt4/app/components/lotes/{LoteForm.vue => Form.vue} (100%) rename nuxt4/app/components/lotes/{LotesTable.vue => Table.vue} (100%) rename nuxt4/app/components/operaciones/{OperacionForm.vue => Form.vue} (100%) rename nuxt4/app/components/operaciones/{OperacionesTable.vue => Table.vue} (100%) diff --git a/nuxt4/app/app.vue b/nuxt4/app/app.vue index f7633f9..134b7ee 100644 --- a/nuxt4/app/app.vue +++ b/nuxt4/app/app.vue @@ -83,7 +83,7 @@