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
| <template>
| <div class="sub-title">
| <slot></slot>
| </div>
| </template>
| <script setup lang="ts"></script>
| <style scoped lang="scss">
| .sub-title {
| position: relative;
| padding-left: 20px;
| color: #fff;
| font-size: 20px;
| font-weight: 700;
| height: 32px;
| &:before {
| content: '';
| background-color: #00dfdf;
| width: 5px;
| height: 24px;
| position: absolute;
| margin-top: 4px;
| top: 0;
| left: 0;
| }
| }
| </style>
|
|