zhuoyuan.wang
2024-06-19 15ebe96f28cadec6a726c5324593a40bbf56205f
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
26
27
28
29
30
31
32
33
34
35
36
37
<template>
  <div class="wrapper scroll-height">
    <div class="left">
      <notice-list/>
    </div>
    <div class="right">
      <window-calendar/>
      <quick-menu/>
    </div>
  </div>
</template>
 
<script setup name="index">
import NoticeList from './NoticeList/index.vue';
import WindowCalendar from './WindowCalendar/index.vue';
import QuickMenu from './QuickMenu/index.vue';
 
</script>
 
<style scoped lang="scss">
.wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
 
  .left {
    flex: 1;
  }
 
  .right {
    width: 400px;
    margin-left: 10px;
    display: flex;
    flex-direction: column;
  }
}
</style>