ProblemArea.vue 627 B

1234567891011121314151617181920212223
  1. /* 问题区 */
  2. <template>
  3. <div class='problem-area'>
  4. <el-card class="box-card" style="height: 91vh">
  5. <template #header>
  6. <div class="card-header">
  7. <span>问题区</span>
  8. <el-button class="button" type="text">操作按钮</el-button>
  9. </div>
  10. </template>
  11. <div v-for="o in 4" :key="o" class="text item">
  12. {{'列表内容 ' + o }}
  13. </div>
  14. </el-card>
  15. </div>
  16. </template>
  17. <style scoped>
  18. .problem-area {
  19. height: 91vh;
  20. background-color: blue;
  21. }
  22. </style>