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 seems the release process stripped out all vue3-specific code.
https://www.runpkg.com/[email protected]/dist/v-click-outside.umd.js
^^ The hooks are hard-coded as bind/update/unbind
bind/update/unbind
The text was updated successfully, but these errors were encountered:
I'm running into the same issue.
It looks like directive support for Vue 3 was added in #563, after the latest published release (3.2.0, May 15 2022, f525d4b).
@ndelvalle - any chance of an updated release?
Sorry, something went wrong.
I switched to this one instead: https://vueuse.org/core/onClickOutside
import vClickOutside from 'v-click-outside'; const { bind, unbind } = vClickOutside.directive; app.directive('click-outside', { mounted(el, bindling) { bind(el, { value: bindling.value }); }, beforeUnmount(el) { unbind(el); }, });
No branches or pull requests
It seems the release process stripped out all vue3-specific code.
https://www.runpkg.com/[email protected]/dist/v-click-outside.umd.js
^^ The hooks are hard-coded as
bind/update/unbind
The text was updated successfully, but these errors were encountered: