Importar ContactsList explícitamente en app.vue
All checks were successful
build-and-deploy / build-and-deploy (push) Successful in 57s
All checks were successful
build-and-deploy / build-and-deploy (push) Successful in 57s
This commit is contained in:
@@ -34,7 +34,7 @@
|
|||||||
|
|
||||||
<!-- Contenido según tab activo -->
|
<!-- Contenido según tab activo -->
|
||||||
<KeepAlive>
|
<KeepAlive>
|
||||||
<ContactsContactsList v-if="activeTab === 'contactos'" />
|
<ContactsList v-if="activeTab === 'contactos'" />
|
||||||
<AuthApplicationsList v-else-if="activeTab === 'aplicaciones'" />
|
<AuthApplicationsList v-else-if="activeTab === 'aplicaciones'" />
|
||||||
<UserProfileForm
|
<UserProfileForm
|
||||||
v-else-if="activeTab === 'perfil'"
|
v-else-if="activeTab === 'perfil'"
|
||||||
@@ -70,6 +70,7 @@
|
|||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import type { TabsItem } from '@nuxt/ui'
|
import type { TabsItem } from '@nuxt/ui'
|
||||||
|
import ContactsList from '~/components/contacts/ContactsList.vue'
|
||||||
|
|
||||||
const { isAuthenticated } = useAuthentik()
|
const { isAuthenticated } = useAuthentik()
|
||||||
const { isNight } = useTheme()
|
const { isNight } = useTheme()
|
||||||
|
|||||||
Reference in New Issue
Block a user