hookehuyr

✨ feat(组件): 新增跳转我的页面组件

<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>
\ No newline at end of file