Open
Description
Version
2.5.22
Reproduction link
https://codepen.io/anon/pen/jXdLGV
Steps to reproduce
Open the repro and note that the rendered page says "initial appear".
What is expected?
The @appear
hook should not be invoked and the page should just say "initial".
What is actually happening?
The @appear
hook is invoked even though the transition
doesn't have an appear
attribute, and hence shouldn't be triggering on appear. The same thing happens if you add :appear ="false"
to the transition
.
Ran into this when building some custom transition components where appear
should be user-controlled, but was being invoked all the time instead.