Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chamilo-lms/assets/vue/views/message/MessageCommunicationParty.vue

36 lines
656 B

<template>
<div class="basic-user-info">
<BaseUserAvatar
:image-url="profileImageUrl"
:alt="t('Picture')"
/>
<div class="basic-user-info__caption">
<div v-text="fullName" />
<div v-text="username" />
</div>
</div>
</template>
<script setup>
import BaseUserAvatar from "../../components/basecomponents/BaseUserAvatar.vue"
import { useI18n } from "vue-i18n"
const { t } = useI18n()
defineProps({
profileImageUrl: {
type: String,
required: true,
},
fullName: {
type: String,
required: true,
},
username: {
type: String,
required: true,
},
})
</script>
<style scoped></style>