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
It should be very useful to use defineExpose in order to expose the close and open functions.
defineExpose
Then we could be able to open or close a popper from somewhere else in the page, something like:
## script const foo = ref() const openFoo = () => foo.value?.open() ## Template <Popper ref="foo">blablabla</Popper> <button @click="openFoo">I can open the popper Foo</button>
The text was updated successfully, but these errors were encountered:
+1 same here
Sorry, something went wrong.
#75
No branches or pull requests
It should be very useful to use
defineExpose
in order to expose the close and open functions.Then we could be able to open or close a popper from somewhere else in the page, something like:
The text was updated successfully, but these errors were encountered: