ismail9k / vue3-carousel

Vue 3 carousel component
https://ismail9k.github.io/vue3-carousel/
MIT License
675 stars 167 forks source link

"Duplicate keys found during update" when add slide to array #261

Closed mukiwu closed 1 year ago

mukiwu commented 1 year ago

I have a "add Slide" button to add slide to pages array

add() {
  pages.push({
    title: 'abc',
    ..
  })
}
<carousel v-model="currentSlide" :autoplay="autoPlayTime" :pauseAutoplayOnHover="true" :mouseDrag="false" :wrap-around="true">
  <slide v-for="item in pages" :key="item.title">
     {{ item }}
  </slide>
</carousel>

but when I add it, console will get warn: [Vue warn]: Duplicate keys found during update: "title" Make sure keys are unique.