<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>
|