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
I'm toggling the popper content on click which results in a misaligned arrow because the new text's length is different.
What I'm missing is access to the underlying popper instance or rather its update method
I could imagine it's provided via the scoped slot:
<Popper> <template #content="{ update }"> <button @click="() => toggleContent() && update()">content</button> </template> </Popper>
Would it be ok to extend this plugin accordingly? Or is there another way to update the popper instance which I'm overseeing?
The text was updated successfully, but these errors were encountered:
I tried to solve this issue slightly differently with this PR (https://github.com/LukePa/vue3-popper-expose-update) by exposing the update method.
Either solution would be great and really increase the possible use cases for the library
Sorry, something went wrong.
No branches or pull requests
I'm toggling the popper content on click which results in a misaligned arrow because the new text's length is different.
What I'm missing is access to the underlying popper instance or rather its update method
I could imagine it's provided via the scoped slot:
Would it be ok to extend this plugin accordingly? Or is there another way to update the popper instance which I'm overseeing?
The text was updated successfully, but these errors were encountered: