小码问答,有问必答!

<el-avatar :src="student.pic">为啥不显示,页面加了<img :src='student.pic'>之后就都显示了

WEB前端

收藏

1个回答

我要回答

  • author
    牛叔叔 2021-04-27 10:29

    给el_avatar加上:key属性,比如:

    <div class="pic">
      <el-avatar  shape="square" :size="100" :src="'http://wanmait.com/'+student.pic" :key="student.pic"></el-avatar>
    </div>