vue 项目 v-for el-image 一直loading状态 加载不出来
代码:
<swiper :options="imageOptions" ref="defectImageSwiper"> <swiper-slide
class="footer_image_swiper"
v-for="(item, index) in images"
:key="index"
:class="{ active: imageIndex == index }"
>
<el-image
class="mini_defect_image"
:src="item.url"
:url="item.url"
ref="image"
fit="fill"
lazy
></el-image>
</swiper-slide>
</swiper>
以上是 vue 项目 v-for el-image 一直loading状态 加载不出来 的全部内容, 来源链接: utcz.com/p/937360.html