用flex布局就能实现, let arr = [ ['1-1', '1-2'], ['2-1', '2-2'] ]<el-row type="flex" class="row-bg" v-for="items in arr"> <el-col v-for="item in items" /> </el-row>.el-col { flex: 1 }
用flex布局就能实现,