Element UI 循环栅格布局
下面是Element UI 栅格布局 for循环下的效果,额外细节需要自行补充
<el-row> <el-col span="4" v-for="(item, index) in 8" :key="item"> <el-card shadow="hover" :body-style="{ padding: '0px'}" style="width: 150px; height: 150px; background-color: red"> </el-card> </el-col> </el-row>
效果:
文章评论