Weird :key behavior
I'm having a SUPER WEIRD issue with
:key
- I get some fairly random ordering of items if I use :key="mything.id"
(id
is a PK straight from DB so very much unique) but it works with :key="index"
(in v-for="(mything, index) in mythings"
- mythings
being computed if that's relevant)0 Replies