Menu
×
×
Correct!
Exercise:What is the name of the Vue specific component used to animate elements created or removed with v-for?
<TransitionGroup tag="ol">
<li v-for="x in products" :key="x">
{{ x }}
</li>
</TransitionGroup>
<Transitiongroup tag="ol">
<li v-for="x in products" :key="x">
{{ x }}
</li>
</Transitiongroup>
<transitiongroup tag="ol">
<li v-for="x in products" :key="x">
{{ x }}
</li>
</transitiongroup>
Not CorrectClick here to try again. Correct!Next ❯<tag="ol"> <li v-for="x in products" :key="x"> {{ x }} </li> </ > |