Files
analiticaNucleo/nuxt4-app/app/components/auth/ProfileButton.vue
josedario87 e4d0b43692
All checks were successful
build-and-deploy / build (push) Successful in 35s
build-and-deploy / deploy (push) Successful in 4s
feat: agregar componentes de auth y UserMetadata en dropdown del UserMenu
2025-10-13 11:58:38 -06:00

21 lines
334 B
Vue

<template>
<UButton
color="primary"
size="lg"
@click="handleClick"
>
<template #leading>
<UIcon name="i-heroicons-user-circle" />
</template>
Ver Perfil
</UButton>
</template>
<script setup lang="ts">
const { goToProfile } = useAuthentik()
const handleClick = () => {
goToProfile()
}
</script>