forked from drone/command-center-dashboard

罗广辉
2025-04-03 8cdaaafadbbdcff3e55da90fc160191d34ec40c7
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>