index.vue
702 Bytes
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
40
41
42
43
44
45
46
47
48
49
50
51
<template>
<div @click="handle">
<img
class="icon-me"
referrerpolicy="no-referrer"
:src="icon_me"
/>
</div>
</template>
<script setup>
import icon_me from '@images/me.png'
import { ref, reactive, onMounted } from 'vue'
const props = defineProps({
type: String
})
const emit = defineEmits(['on-click']);
const handle = () => {
emit('on-click', '')
}
onMounted(() => {
})
</script>
<script>
export default {
data () {
return {
}
},
mounted () {
},
methods: {
}
}
</script>
<style lang="less" scoped>
.icon-me {
z-index: 169;
position: fixed;
right: 2rem;
bottom: 10rem;
width: 44px;
height: 44px;
}
</style>