Skip to content
This repository was archived by the owner on Feb 27, 2019. It is now read-only.

Commit a2d199d

Browse files
committed
component lists rendered with v-for should have explicit keys. See https://vuejs.org/guide/list.html\#key for more info
1 parent 47d5351 commit a2d199d

File tree

1 file changed

+1
-1
lines changed
  • generators/techs/templates/src/app/techs

1 file changed

+1
-1
lines changed

generators/techs/templates/src/app/techs/Techs.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Cooked with all these awesome technologies:
55
</h2>
66
<div class="techs">
7-
<tech v-for="tech in techs" :tech="tech"></tech>
7+
<tech v-for="tech in techs" :tech="tech" :key="item.key"></tech>
88
</div>
99
</div>
1010
</template>

0 commit comments

Comments
 (0)