1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| <template>
| <div class="task-left">
| <TaskTotal />
| <TaskIndustry />
| </div>
| </template>
|
| <script setup>
| import TaskTotal from './TaskTotal.vue';
| import TaskIndustry from './TaskIndustry.vue';
| </script>
|
| <style lang="scss" scoped>
| .task-left {
| // width: 300px;
| position: relative;
| top: 20px;
| }
| </style>
|
|