Put key on child
parent
0a648d27f1
commit
4dafc434f4
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -2,7 +2,6 @@
|
||||||
<div class="container" ref="container" :class="{ 'icon-loading': loading }">
|
<div class="container" ref="container" :class="{ 'icon-loading': loading }">
|
||||||
<!-- Main recycler view for rows -->
|
<!-- Main recycler view for rows -->
|
||||||
<RecycleScroller
|
<RecycleScroller
|
||||||
v-if="list.length > 0"
|
|
||||||
ref="recycler"
|
ref="recycler"
|
||||||
class="recycler"
|
class="recycler"
|
||||||
:items="list"
|
:items="list"
|
||||||
|
@ -23,9 +22,11 @@
|
||||||
|
|
||||||
<div class="photo" v-for="photo of item.photos" :key="photo.fileid">
|
<div class="photo" v-for="photo of item.photos" :key="photo.fileid">
|
||||||
<Folder v-if="photo.isfolder"
|
<Folder v-if="photo.isfolder"
|
||||||
|
:key="state"
|
||||||
:data="photo"
|
:data="photo"
|
||||||
:rowHeight="rowHeight" />
|
:rowHeight="rowHeight" />
|
||||||
<Photo v-else
|
<Photo v-else
|
||||||
|
:key="state"
|
||||||
:data="photo"
|
:data="photo"
|
||||||
:rowHeight="rowHeight"
|
:rowHeight="rowHeight"
|
||||||
:day="item.day"
|
:day="item.day"
|
||||||
|
|
Loading…
Reference in New Issue