column-spacing.vue 542 B

12345678910111213141516171819202122232425
  1. <template>
  2. <el-row :gutter="20">
  3. <el-col :span="6"><div class="grid-content ep-bg-purple" /></el-col>
  4. <el-col :span="6"><div class="grid-content ep-bg-purple" /></el-col>
  5. <el-col :span="6"><div class="grid-content ep-bg-purple" /></el-col>
  6. <el-col :span="6"><div class="grid-content ep-bg-purple" /></el-col>
  7. </el-row>
  8. </template>
  9. <style>
  10. .el-row {
  11. margin-bottom: 20px;
  12. }
  13. .el-row:last-child {
  14. margin-bottom: 0;
  15. }
  16. .el-col {
  17. border-radius: 4px;
  18. }
  19. .grid-content {
  20. border-radius: 4px;
  21. min-height: 36px;
  22. }
  23. </style>