24 lines
517 B
Vue
24 lines
517 B
Vue
<template>
|
|
<div class="flex items-center">
|
|
<div class="mr-2 flex items-center">
|
|
<Avatar :image="avatarImage" :label="fullName" size="lg" />
|
|
</div>
|
|
<div>
|
|
<div class="text-sm font-medium text-gray-900">
|
|
{{ fullName }}
|
|
</div>
|
|
<div class="mt-0.5 text-sm text-gray-600">
|
|
{{ email }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { Avatar } from 'jingrow-ui';
|
|
const props = defineProps({
|
|
avatarImage: String,
|
|
fullName: String,
|
|
email: String
|
|
});
|
|
</script> |