For some reason this doesn't work
<transition-group>
<nuxt-link class="card-link card" :to="`/${card.section.name}/${card.slug}`" v-for="card in cards" :key="card.id">
The error is [Vue warn]: <transition-group> children must be keyed: <router-link>
But I already have the key :key="card.id"
.