0👍
Use transition prop with empty value.
<el-tooltip
placement="bottom"
:content="my text"
:enterable="false"
transition="" <-- add this prop
>
<div class="custom-item">Next</div>
</el-tooltip>
- [Vuejs]-Patch data with Vue Js and Laravel
- [Vuejs]-How to pass nextPage variable value from child to parent's router-link?
0👍
Wanted to achieve the same but unfortunately, they have 200ms debounce hardcoded on mouseleave
this.debounceClose = debounce(200, () => this.handleClosePopper());
https://github.com/ElemeFE/element/blob/dev/packages/tooltip/src/main.js#L75
Hacky way to achieve it:
<el-tooltip
transition=""
:disabled="tooltipDisabled"
>
<button
@mouseleave="tooltipDisabled = true"
@mouseenter="tooltipDisabled = false"
></button>
</el-tooltip>
- [Vuejs]-Uncaught TypeError: [] is not a function
- [Vuejs]-Want to show laravel validation messages using vuejs
Source:stackexchange.com