Skip to content

Commit c75a55a

Browse files
authored
fix(vue): fix bug with key type
1 parent ef426cd commit c75a55a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/vue/your-first-app/2-taking-photos.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ With the photo(s) stored into the main array we can now display the images on th
140140
<ion-content>
141141
<ion-grid>
142142
<ion-row>
143-
<ion-col size="6" :key="photo" v-for="photo in photos">
143+
<ion-col size="6" :key="photo.filepath" v-for="photo in photos">
144144
<ion-img :src="photo.webviewPath"></ion-img>
145145
</ion-col>
146146
</ion-row>

0 commit comments

Comments
 (0)