0👍
✅
Try to add ‘id’ in your Array, and put the ID of Array as a Key.
v-for="team in myteams"
:key="team.id"
Or, change the key of loop :key="team.name" if you won’t add ‘id’
Source:stackexchange.com