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
v-if
3.0.11
https://jsfiddle.net/Lrnebjuv/24/
Text below button should show 1, 2, 3 in a loop
Text shows 1, 1, 3 instead
Also happens without .children.default() using <slot></slot> instead in this variant https://jsfiddle.net/Lrnebjuv/25/
.children.default()
<slot></slot>
Original context is a tab component: rashfael/buntpapier#22 https://github.com/rashfael/buntpapier/blob/vue3/src/tabs.js
The text was updated successfully, but these errors were encountered:
as a workaround add key to p:
key
p
<Bar> <p key="1" v-if="true"> 1 </p> </Bar> <Bar> <p key="2" v-if="true"> 2 </p> </Bar>
Sorry, something went wrong.
fix(runtime-core): should not track dynamic children when the user ca…
2010607
…lls a compiled slot inside template expression (#3554) fix #3548, partial fix for #3569
2010607 is a partial fix which does not fix the <slot/> variant
<slot/>
Successfully merging a pull request may close this issue.
Version
3.0.11
Reproduction link
https://jsfiddle.net/Lrnebjuv/24/
Steps to reproduce
What is expected?
Text below button should show 1, 2, 3 in a loop
What is actually happening?
Text shows 1, 1, 3 instead
Also happens without
.children.default()
using<slot></slot>
instead in this variant https://jsfiddle.net/Lrnebjuv/25/Original context is a tab component:
rashfael/buntpapier#22
https://github.com/rashfael/buntpapier/blob/vue3/src/tabs.js
The text was updated successfully, but these errors were encountered: