Files
timmal/app/components/AppUser.vue
Lucien Cartier-Tilet 40ae2145cc
All checks were successful
ci / ci (push) Successful in 16m22s
feat: authentication with OAuth
2025-12-12 03:08:52 +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>