Debug: Importar componentes explícitamente en app.vue
All checks were successful
build-and-deploy / build-and-deploy (push) Successful in 1m4s

This commit is contained in:
2025-11-21 22:49:51 -06:00
parent 0857573334
commit c5d11433e3

View File

@@ -174,6 +174,10 @@
<script setup lang="ts"> <script setup lang="ts">
import type { Lote, Operacion } from '~/composables/useLotes' import type { Lote, Operacion } from '~/composables/useLotes'
import LotesLotesTable from '~/components/lotes/LotesTable.vue'
import OperacionesOperacionesTable from '~/components/operaciones/OperacionesTable.vue'
console.log('🚀 App.vue: Componentes importados', { LotesLotesTable, OperacionesOperacionesTable })
const { isAuthenticated } = useAuthentik() const { isAuthenticated } = useAuthentik()