forked from drone/command-center-dashboard

chenyao
2025-03-31 295eb3cc87aaa5176d64a4ef985cdad0bfefae9a
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
<script setup>
import { fullscreenToggel } from '@/utils/util';
</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"  @click="fullscreenToggel"/>
  </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>