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
38
39
| <script setup>
|
| </script>
|
| <template>
| <span class="title-icon">
| <span class="title-icon-content"></span>
| </span>
| </template>
|
| <style lang="less" scoped>
| .title-icon {
| display: inline-block;
| width: 30px;
| height: 30px;
| }
| .title-icon:before,
| .title-icon:after,
| .title-icon-content {
| display: inline-block;
| content: "";
| width: 4px;
| vertical-align: middle;
| }
| .title-icon:before {
| height: 14px;
| background-color: #0f448d;
| }
| .title-icon-content {
| margin-left: 4px;
| height: 18px;
| background-color: #1e77b8;
| }
| .title-icon:after {
| margin-left: 4px;
| height: 22px;
| background-color: #2cabe3;
| }
| </style>
|
|