computed: {
ImgMounted() {
return function (index) {
if (index) {
return index.split(",");
}
};
},
},
<div class="main_title" style="border: 1px solid #1c1c1c1c">
<el-carousel height="400px" trigger="click">
<el-carousel-item v-for="item in ImgMounted(companyInfoData.honorImg)":key="item">
<img :src="item" alt=""/>
</el-carousel-item>
</el-carousel>
</div>