# 图片/头像
# 介绍
头像或图片组件直接采用的是uni-ui的image
# "用户头像"示例代码
图片加载失败会在@error
事件中加载默认图片'/static/img/60x60.png'
<image @error="imageError" class="avatar2" :src="userAvatar || authUserInfo.avatar_url" mode="aspectFill"></image>
imageError() {
if (this.repo && this.repo.owner) {
this.repo.owner.avatar_url = '/static/img/60x60.png'
}
},
1
2
3
4
5
6
7
2
3
4
5
6
7