2.2.1
https://jsfiddle.net/ukd699sr/1/
Add a event to a <transition-group>.
The event should fire. In the provided reproduction link, a click event is bound to the "Toggle" button, which works as expected.
The event does not fire. Also in the reproduction link, a click event is bound to a <transition-group>, which does not work as expected. I don't have a thorough knowledge of Vue.js's inner workings, but it appears the event is not actually bound.
You need to use the native modifier on the click event because it's a component
Huh. Thanks!
Most helpful comment
You need to use the
nativemodifier on theclickevent because it's a component