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
| <script setup></script>
|
| <template>
| <div class="userOperate">
| <img alt="" src="@/assets/images/home/homeRight/operate1.png" />
| <img alt="" src="@/assets/images/home/homeRight/operate2.png" />
| <img alt="" src="@/assets/images/home/homeRight/operate3.png" />
| </div>
| </template>
|
| <style scoped lang="scss">
| .userOperate {
| position: absolute;
| right: 27px;
| top: -30px;
| width: 132px;
| height: 38px;
| display: flex;
| justify-content: space-between;
|
| > img {
| cursor: pointer;
| }
| }
| </style>
|
|