element-plus/docs/examples/tooltip/virtual-trigger.vue
zt123123 6a8a5aaf3a
fix(components): [tooltip] remove mousemove listener when unmount (#11940)
Co-authored-by: Jeremy <15975785+jw-foss@users.noreply.github.com>
2023-03-12 14:26:51 +08:00

47 lines
858 B
Vue

<template>
<el-tooltip
v-model:visible="visible"
content="Bottom center"
placement="bottom"
effect="light"
trigger="click"
virtual-triggering
:virtual-ref="triggerRef"
/>
<el-button @click="visible = !visible">test</el-button>
</template>
<script setup lang="ts">
import { onMounted, onUnmounted, ref } from 'vue'
const visible = ref(false)
const triggerRef = ref({
getBoundingClientRect() {
return position.value
},
})
const position = ref({
top: 0,
left: 0,
bottom: 0,
right: 0,
})
const mousemoveHandler = (e) => {
position.value = DOMRect.fromRect({
width: 0,
height: 0,
x: e.clientX,
y: e.clientY,
})
}
onMounted(() => {
document.addEventListener('mousemove', mousemoveHandler)
})
onUnmounted(() => {
document.removeEventListener('mousemove', mousemoveHandler)
})
</script>