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
Responsive Dialog is a component that implemented like this
<Dialog v-if="isDesktop" v-model:open="isOpen"> ... </Dialog> <Drawer v-else v-model:open="isOpen">... </Drawer>
And drawer keeps this styles on body, since when viewport changes it does not close
<body style="right: 0px; position: fixed; top: 0px; left: 0px; height: auto; pointer-events: none; overflow: hidden;">
onUnmounted()
The text was updated successfully, but these errors were encountered:
zernonia
Successfully merging a pull request may close this issue.
How to reproduce
Reason
Responsive Dialog is a component that implemented like this
And drawer keeps this styles on body, since when viewport changes it does not close
Possible solution
onUnmounted()
that removes this styleThe text was updated successfully, but these errors were encountered: