- Statistiche

- Menu e Sottomenu
- Lista ultimi Movimenti
This commit is contained in:
Surya Paolo
2024-09-26 02:14:50 +02:00
parent 4ac0acc2f3
commit 4c9e5ae991
101 changed files with 2215 additions and 9516 deletions

View File

@@ -0,0 +1,22 @@
<template>
<q-avatar size="60px">
<q-img
v-if="contact || mov"
:src="
mov
? getImgUserMov(from ? mov.tipocontofrom : mov.tipocontoto, from)
: getImgUser(contact)
"
:alt="contact ? contact.username : ''"
img-class="imgprofile"
height="60px"
/>
</q-avatar>
</template>
<script lang="ts" src="./CMyImgUser.ts">
</script>
<style lang="scss" scoped>
@import './CMyImgUser.scss';
</style>