123456789101112131415161718192021222324252627282930313233 |
- <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, 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,
- })
- onMounted(() => {
- document.addEventListener('mousemove', e => {
- position.value = DOMRect.fromRect({
- width: 0,
- height: 0,
- x: e.clientX,
- y: e.clientY,
- })
- })
- })
- </script>
|