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
20
21
22
23
24
25
<template>
  <div class="task-right">
    <TaskTime />
    <TaskEvent />
  </div>
</template>
 
<script setup>
import TaskTime from './TaskTime.vue';
import TaskEvent from './TaskEvent.vue';
</script>
 
<style scoped lang="scss">
.task-right {
  position: absolute;
  top: 122px;
  right: 31px;
  width: 404px;
 
  .titleBox {
    width: 404px;
    height: 43px;
  }
}
</style>