Files
timmal/app/components/AppUser.vue
Lucien Cartier-Tilet ea28a87860
All checks were successful
ci / ci (push) Successful in 19m53s
feat: authentication with OAuth
2025-12-10 21:21:38 +01:00

8 lines
186 B
Vue

<template>
<UUser v-if="user" :name="user.name" :description="user.email" :avatar="{ src: user.avatar }" />
</template>
<script lang="ts" setup>
const { user } = useAuth();
</script>