Importar ContactsList explícitamente en app.vue
All checks were successful
build-and-deploy / build-and-deploy (push) Successful in 57s

This commit is contained in:
2025-12-05 11:57:53 -06:00
parent d98c182a2d
commit ed2f8b1107

View File

@@ -34,7 +34,7 @@
<!-- Contenido según tab activo -->
<KeepAlive>
<ContactsContactsList v-if="activeTab === 'contactos'" />
<ContactsList v-if="activeTab === 'contactos'" />
<AuthApplicationsList v-else-if="activeTab === 'aplicaciones'" />
<UserProfileForm
v-else-if="activeTab === 'perfil'"
@@ -70,6 +70,7 @@
<script setup lang="ts">
import type { TabsItem } from '@nuxt/ui'
import ContactsList from '~/components/contacts/ContactsList.vue'
const { isAuthenticated } = useAuthentik()
const { isNight } = useTheme()