When using v-for, it is strongly recommended to include a key. Furthermore, as explained here, using the array index as your key doesn't really help.
If your elements have an id property, then that's great - you could just use that as your key. But what about when your elements don't have an id property? What should you use as your key in that scenario?