-
-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
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
Inherited class binding on components inside transition-group is not updated #677
Comments
Is this issue open for PRs? |
Well I don't have the time to work on this myself at the moment, and since there's been no activity from others, I'd assume so? Prior triage would be appreciated though @yyx990803 :) |
…as component-tag (vuejs#677)
@yyx990803 There's a regression in the latest alpha, the repro from above (https://codepen.io/21stCenturyJonas/pen/ZEYdOBg, updated it to use |
This is fixed in a6e2b10 |
Version
3.0.0-alpha.4
Reproduction link
https://codepen.io/21stCenturyJonas/pen/ZEYdOBg?editors=1010
Steps to reproduce
<transiton-group>
usingv-for
index
to componentWhat is expected?
The class binding updates as the rendered list changes.
If the class binding evaluated
index === 0
and the index is not 0 anymore, the binding should evaluate to false and the class should be removed.What is actually happening?
The class is not removed, even though the expression in the class binding now evaluates to false.
The text was updated successfully, but these errors were encountered: