We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Latest
Nan
Add force-mount to the portal and wrap the content with Vue transition that has a transform property
force-mount
transform
<TooltipPortal force-mount> <Transition name="tooltip-bottom"> <TooltipContent v-bind="{ ...forwarded, ...$attrs }" :class="['ui-tooltip-content', props.class]" :side="side" > <slot /> </TooltipContent> </Transition> </TooltipPortal>
.tooltip-bottom-enter-active, .tooltip-bottom-leave-active { transition: all 0.3s ease; } .tooltip-bottom-enter-from, .tooltip-bottom-leave-to { opacity: 0; transform: translateY(30px) scale(0.5); }
On enter transition, the tooltip flies from the top of the window
No response
The text was updated successfully, but these errors were encountered:
I'm having the exact same issue as shown; how could I solve this problem ? 🙂
Sorry, something went wrong.
Try wrapping the Transition component in an absolute positioned parent div
No branches or pull requests
Environment
Link to minimal reproduction
Nan
Steps to reproduce
Add
force-mount
to the portal and wrap the content with Vue transition that has atransform
propertyDescribe the bug
On enter transition, the tooltip flies from the top of the window
Screen.Recording.2024-02-24.at.10.40.20.mov
Expected behavior
No response
Context & Screenshots (if applicable)
No response
The text was updated successfully, but these errors were encountered: