Files
timmal/app/components/AppUser.vue
Lucien Cartier-Tilet 552dfc5fc9
Some checks failed
ci / ci (push) Has been cancelled
feat(layout): add search button
2026-02-28 01:33:52 +01:00

13 lines
234 B
Vue

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