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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Vuetify Version: 3.1.13 Last working version: 2.6.14 Vue Version: 3.3.0-alpha.8 Browsers: Chrome 111.0.0.0 OS: Windows 10
The select menu should close or at least close when blurred
The menu is actually stuck open indefinitely
https://play.vuetifyjs.com/#...
The text was updated successfully, but these errors were encountered:
I know it is not a better solution, but you can add setTimeout in your delete function
<script setup> import { ref } from 'vue' const items = ref([1]) function onDelete(item) { setTimeout(() => items.value.splice(items.value.indexOf(item), 1), 1000) } </script>
Sorry, something went wrong.
fix(VMenu): unregister on unmount
a456502
fixes #17094
a84d411
2f3163c
KaelWD
Successfully merging a pull request may close this issue.
Environment
Vuetify Version: 3.1.13
Last working version: 2.6.14
Vue Version: 3.3.0-alpha.8
Browsers: Chrome 111.0.0.0
OS: Windows 10
Steps to reproduce
Expected Behavior
The select menu should close or at least close when blurred
Actual Behavior
The menu is actually stuck open indefinitely
Reproduction Link
https://play.vuetifyjs.com/#...
The text was updated successfully, but these errors were encountered: