日々精進

新しく学んだことを書き留めていきます

Vueでアニメーションを実装したら「[Vue warn]: <transition-group> children must be keyed: <div>」エラー

transition-groupの中のv-forをつけているタグに:keyがないことが原因。以下のようにkeyに要素毎に異なる値をbindすれば直った。

div(v-for='item in this.items', :key="item.id")

参考:

jp.vuejs.org