checkArea.vue 514 B

123456789101112131415161718192021222324252627282930313233
  1. <template>
  2. <div class="problem">
  3. <AreaCard title="校验区" height="25"></AreaCard>
  4. </div>
  5. </template>
  6. <script>
  7. import AreaCard from "./areaCard.vue";
  8. import BackgroundData from 'utils/BackgroundData'
  9. export default {
  10. name: "ProblemArea",
  11. components: {
  12. AreaCard,
  13. },
  14. props: {},
  15. data() {
  16. return {
  17. };
  18. },
  19. computed: {},
  20. created: function () {
  21. },
  22. methods: {
  23. },
  24. };
  25. </script>
  26. <style scoped>
  27. .problem {
  28. height: 100%;
  29. }
  30. </style>