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
3.2.31
https://stackblitz.com/edit/github-96ft3e-rqszjf?file=src%2FApp.vue,src%2FAppImage.vue
1、create a dynamic components 2、use v-show to show or hdie the components. AppImage.js
v-show
<component :is="tag"> <slot /> </component>
main.js
<AppImage> <AppImage v-show="object">works</AppImage> </AppImage> <AppImage> <AppImage v-show="!object">works</AppImage> </AppImage>
3、the hidden components will show up at start and display: none can not be found in source code
display: none
the dynamic components hide correctly
the dynamic components will show up
No response
The text was updated successfully, but these errors were encountered:
98b83e8
Successfully merging a pull request may close this issue.
Vue version
3.2.31
Link to minimal reproduction
https://stackblitz.com/edit/github-96ft3e-rqszjf?file=src%2FApp.vue,src%2FAppImage.vue
Steps to reproduce
1、create a dynamic components
2、use
v-show
to show or hdie the components.AppImage.js
main.js
3、the hidden components will show up at start and
display: none
can not be found in source codeWhat is expected?
the dynamic components hide correctly
What is actually happening?
the dynamic components will show up
System Info
No response
Any additional comments?
No response
The text was updated successfully, but these errors were encountered: