fix: proper key for v-for loops

This commit is contained in:
liyasthomas
2021-07-14 05:19:08 +05:30
parent 7ec8539540
commit eeddb6a97e
39 changed files with 139 additions and 130 deletions

View File

@@ -18,7 +18,7 @@
/>
</div>
</div>
<ul v-for="(token, index) in tokens" :key="index">
<ul v-for="(token, index) in tokens" :key="`token-${index}`">
<li>
<input
class="input"