You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
424 B
Vue
24 lines
424 B
Vue
|
3 years ago
|
<script setup lang='ts'>
|
||
|
|
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<div class="flex items-center">
|
||
|
|
<div class="w-10 h-10 overflow-hidden rounded-full">
|
||
|
|
<img class="object-cover" src="@/assets/avatar.jpg" alt="avatar">
|
||
|
|
</div>
|
||
|
|
<div class="ml-2">
|
||
|
|
<h2 class="text-sm font-bold">
|
||
|
|
Redon
|
||
|
|
</h2>
|
||
|
|
<p class="text-xs text-gray-500">
|
||
|
|
#0827
|
||
|
|
</p>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<style>
|
||
|
|
|
||
|
|
</style>
|