Closed
Description
Version
2.4.2
Reproduction link
https://jsbin.com/qejofexedo/edit?html,js,output
Steps to reproduce
see reproduction link.
What is expected?
When I click Expand is True
, then expand
to become false
. And only countA
changed.
What is actually happening?
When I click Expand is Ture
, nothing happened.
The countA
and countB
changed.
I guess when I click, expand
changed to false
, but immediate the click event triggered. It executes another vnode click event. Then expand changed to true
.
And More
- If I rename the second div to another tag name, such as
p
,section
, no errors occur. - If I move click event from
i
tag to parentdiv
tag in the first div, no errors occur