在Element UI的el-carousel组件中设置图片和文字,你需要通过el-carousel-item来为每个轮播项添加内容。下面是一个基于你的提示来展示如何在el-carousel-item中添加图片和文字的分点解答,并包含了代码片段。1. 在el-carousel-item中添加图片元素 你可以在el-carousel-item内部使用<img>标签来添加图片。设置src...
el-carousel组件 <el-carousel arrow="always" :autoplay="false" :initial-index="imgIndex" :loop="false" height="700px" ref="carousel" @change="carouselChange"> <el-carousel-item v-for="item in currentcheckImgList" :key="item.id" > </el-carousel-item> </el-carousel> :initial-in...