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
<script setup>
import TaskLeft from "./components/TaskLeft/TaskLeft.vue";
import TaskRight from "./components/TaskRight/TaskRight.vue";
import TaskIntermediateContent from "./components/TaskIntermediateContent/TaskIntermediateContent.vue";
</script>
 
<template>
  <TaskLeft/>
  <TaskIntermediateContent />
  <TaskRight/>
</template>
 
 
<style scoped lang="scss">
 
</style>