lokyoung / vuejs-paginate

A Vue.js(v2.x+) component for creating pagination.
MIT License
779 stars 171 forks source link

About :key="..." on v-for sub components #107

Open stouch opened 5 years ago

stouch commented 5 years ago

Hi,

I had a warning about the fact that there isn't :key="" binding on components that are in v-for loops .

I fixed it by binding :key="p+page.index" and adding key "index: index" in breakView object line 261.

Except that, it's perfect. Thank you. Regards.