How can I set props or attributes in Vuejs transition-group
?
For example, I have this snippet
<v-layout :row="true" wrap>
<v-card v-for="(file, id) in files" :key="id">
...
</v-card>
</v-layout>
Then I want to animate the transition in a list of cards, so can I transform it into this?
<transition-group name="card-in-out" tag="v-layout" :row="true" wrap>
<v-card v-for="(file, id) in files" :key="id">
...
</v-card>
</transition-group>