mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-04 04:08:34 +08:00
49 lines
924 B
Vue
49 lines
924 B
Vue
<template>
|
|
<div>
|
|
<el-button
|
|
v-for="i in 3"
|
|
:key="i"
|
|
@mouseover="(e) => (buttonRef = e.currentTarget)"
|
|
@click="visible = !visible"
|
|
>Click to open tooltip</el-button
|
|
>
|
|
</div>
|
|
|
|
<el-tooltip
|
|
ref="tooltipRef"
|
|
:visible="visible"
|
|
:popper-options="{
|
|
modifiers: [
|
|
{
|
|
name: 'computeStyles',
|
|
options: {
|
|
adaptive: false,
|
|
enabled: false,
|
|
},
|
|
},
|
|
],
|
|
}"
|
|
:virtual-ref="buttonRef"
|
|
virtual-triggering
|
|
popper-class="singleton-tooltip"
|
|
>
|
|
<template #content>
|
|
<span> Some content </span>
|
|
</template>
|
|
</el-tooltip>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ref } from 'vue'
|
|
const buttonRef = ref()
|
|
const tooltipRef = ref()
|
|
|
|
const visible = ref(false)
|
|
</script>
|
|
|
|
<style>
|
|
.singleton-tooltip {
|
|
transition: transform 0.3s var(--el-transition-function-fast-bezier);
|
|
}
|
|
</style>
|