You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
667 B

9 months ago
7 months ago
9 months ago
8 months ago
7 months ago
  1. <template>
  2. <a-row :gutter="16">
  3. <a-col :xl="24" :xs="12">
  4. <div class="responsive-box">Content 1</div>
  5. </a-col>
  6. <a-col :xs="12">
  7. <div class="responsive-box">Content 2</div>
  8. </a-col>
  9. <a-col :xs="12">
  10. <div class="responsive-box">Content 3</div>
  11. </a-col>
  12. <!-- <a-col :xl="4">
  13. <div class="responsive-box">Content 2</div>
  14. </a-col>
  15. <a-col :xl="4">
  16. <div class="responsive-box">Content 2</div>
  17. </a-col>
  18. <a-col :xl="4">
  19. <div class="responsive-box">Content 2</div>
  20. </a-col> -->
  21. </a-row>
  22. </template>
  23. <style>
  24. .responsive-box {
  25. background-color: #f0f0f0;
  26. text-align: center;
  27. }
  28. </style>