mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-04 12:17:37 +08:00
dd19cae2bc
* refactor(components): popper composables - Refactor popper composables * updates * updates for tooltip * Updates for popper. TODO: fix controlled tooltip animation * Fix controlled mode popper animation issue * Add new feature for customizing tooltip theme * Fix popover and popconfirm error * - Add Collection component for wrapping a collection of component - Add FocusTrap component for trap focus for popups - Add RovingFocus component for roving focus component type - Adjust dropdown component based on these newly added components - Add popper-trigger component for placing the trigger - TODO: Finish current dropdown component, and all component's tests plus documents * Refactor popper * Complete organizing popper * Almost finish dropdown * Update popper tests * update only-child test * Finish focus trap component test * Finish tooltip content test * Finish tooltip trigger tests * Finish tooltip tests * finish tests for Collection and RovingFocusGroup * Fix test cases for timeselect & select & popover * Fix popover, popconfirm, menu bug and test cases * Fix select-v2 test error caused by updating popper * Fix date-picker test issue for updating popper * fix test cases * Fix eslint * Rebase dev & fix tests * Remove unused code
50 lines
951 B
Vue
50 lines
951 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"
|
|
v-model:visible="visible"
|
|
:popper-options="{
|
|
modifiers: [
|
|
{
|
|
name: 'computeStyles',
|
|
options: {
|
|
adaptive: false,
|
|
enabled: false,
|
|
},
|
|
},
|
|
],
|
|
}"
|
|
:virtual-ref="buttonRef"
|
|
virtual-triggering
|
|
trigger="click"
|
|
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>
|