mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 01:41:20 +08:00
42 lines
731 B
Vue
42 lines
731 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 { ref, onMounted } from 'vue'
|
||
|
|
||
|
const visible = ref(false)
|
||
|
const triggerRef = ref({
|
||
|
getBoundingClientRect() {
|
||
|
return position.value
|
||
|
},
|
||
|
})
|
||
|
|
||
|
const position = ref({
|
||
|
top: 0,
|
||
|
left: 0,
|
||
|
bottom: 0,
|
||
|
right: 0,
|
||
|
})
|
||
|
|
||
|
onMounted(() => {
|
||
|
document.addEventListener('mousemove', (e) => {
|
||
|
position.value = DOMRect.fromRect({
|
||
|
width: 0,
|
||
|
height: 0,
|
||
|
x: e.clientX,
|
||
|
y: e.clientY,
|
||
|
})
|
||
|
})
|
||
|
})
|
||
|
</script>
|