#エラー内容
v-for
タグを使ったら、
Elements in iteration expect to have 'v-bind:key' directives vue/require-v-for-key
が発生
#エラー原因
v-bind:
を使って、キー属性を指定してください とのこと
#解決方法
# 元コード
# 解決コード
<tr v-for="(item,key) in data.fire_data" v-bind:key='key'>
Go to list of users who liked
More than 1 year has passed since last update.
#エラー内容
v-for
タグを使ったら、
Elements in iteration expect to have 'v-bind:key' directives vue/require-v-for-key
が発生
#エラー原因
v-bind:
を使って、キー属性を指定してください とのこと
#解決方法
# 元コード
# 解決コード
<tr v-for="(item,key) in data.fire_data" v-bind:key='key'>
Register as a new user and use Qiita more conveniently
Go to list of users who liked