<div class="chat-user" v-for="user in userList" :key="user.openid">
<img class="chat-avatar" :src="user.photo" alt="">
<div class="chat-user-name">
<span>{{user.nickname}}</span>
</div>
</div>
1. Use v-for to traverse userList and display content on demand
:
2.
3. Problem encountered:
how can users with new messages be marked?