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
| <template>
| <div class="app-view">
| <router-view></router-view>
| </div>
| </template>
|
|
| <script setup lang="ts">
| </script>
|
| <style scoped>
| .app-view {
| padding: 16px;
| position: relative;
| top: 60px;
| }
|
| ::-webkit-scrollbar {
| width: 4px;
| height: 6px;
| background-color: rgba(255, 255, 255, 0.7);
| }
|
| /* 滚动条 */
| ::-webkit-scrollbar-thumb {
| -webkit-border-radius: 10px;
| border-radius: 10px;
| background: #ababab;
| }
|
| ::-webkit-scrollbar-thumb:window-inactive {
| background-color: #ababab;
| }
| </style>
|
|