123456789101112131415161718192021222324252627282930313233 |
- <template>
- <div class="problem">
- <AreaCard title="校验区" height="25"></AreaCard>
- </div>
- </template>
- <script>
- import AreaCard from "./areaCard.vue";
- import BackgroundData from 'utils/BackgroundData'
- export default {
- name: "ProblemArea",
- components: {
- AreaCard,
- },
- props: {},
- data() {
- return {
- };
- },
- computed: {},
- created: function () {
- },
- methods: {
-
- },
- };
- </script>
- <style scoped>
- .problem {
- height: 100%;
- }
- </style>
|