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

Commit 0143cda

Browse files
AndreasAndreas
authored andcommitted
fix warnings
1 parent b752a89 commit 0143cda

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pages/form.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,12 +83,12 @@
8383

8484
<f7-block-title>Checkboxes</f7-block-title>
8585
<f7-list form>
86-
<f7-list-item v-for="n in 3" checkbox name="my-checkbox" :value="n" :title="'Checkbox ' + n"></f7-list-item>
86+
<f7-list-item v-for="n in 3" :key="n" checkbox name="my-checkbox" :value="n" :title="'Checkbox ' + n"></f7-list-item>
8787
</f7-list>
8888

8989
<f7-block-title>Radios</f7-block-title>
9090
<f7-list form>
91-
<f7-list-item v-for="n in 3" radio name="my-radio" :checked="n === 1" :value="n" :title="'Radio ' + n"></f7-list-item>
91+
<f7-list-item v-for="n in 3" :key="n" radio name="my-radio" :checked="n === 1" :value="n" :title="'Radio ' + n"></f7-list-item>
9292
</f7-list>
9393

9494
<f7-block-title>Buttons</f7-block-title>

0 commit comments

Comments
 (0)