Fix: Usar convención correcta de auto-import de Nuxt para componentes
All checks were successful
build-and-deploy / build-and-deploy (push) Successful in 16s

- Eliminar imports manuales innecesarios
- Usar nombres correctos para componentes en subdirectorios:
  - app/components/lotes/LotesTable.vue → LotesLotesTable
  - app/components/lotes/LoteForm.vue → LotesLoteForm
  - app/components/operaciones/OperacionesTable.vue → OperacionesOperacionesTable
- Verificado con analiticaNucleo que no requiere imports explícitos
- Nuxt hace auto-import usando directorio como prefijo
This commit is contained in:
2025-11-21 20:59:38 -06:00
parent 00b508ffaf
commit e5bb401a95

View File

@@ -82,7 +82,6 @@
<!-- Tab: Lotes -->
<template #lotes>
<div class="py-4">
<h3>Contenido del Tab Lotes</h3>
<LotesLotesTable
@create="showCreateLoteModal = true"
@view="handleViewLote"
@@ -95,7 +94,6 @@
<!-- Tab: Operaciones -->
<template #operaciones>
<div class="py-4">
<h3>Contenido del Tab Operaciones</h3>
<OperacionesOperacionesTable
@create="showCreateOperacionModal = true"
@view="handleViewOperacion"