index.vue 709 Bytes
<template>
  <div @click="handle">
    <img
      class="icon-me"
      referrerpolicy="no-referrer"
      :src="icon_me"
    />
  </div>
</template>

<script setup>
import icon_me from '@images/icon-my@2x.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: 5rem;
    width: 44px;
    height: 44px;
  }
</style>