replay, added this year

This commit is contained in:
booploops 2022-02-17 02:08:28 -08:00
parent 6f975a3394
commit 4e569365f8
3 changed files with 17 additions and 9 deletions

View file

@ -3,7 +3,7 @@
<vue-horizontal>
<div v-for="items in itemPages">
<mediaitem-list-item
v-for="(song, index) in items" :parent="'listitem-hr' + simplifiedParent"
v-for="(song, index) in items" :show-library-status="show-library-status" :parent="'listitem-hr' + simplifiedParent"
:index="song.index"
:item="song"></mediaitem-list-item>
</div>
@ -19,6 +19,10 @@
items: {
type: Array,
required: true
},
"show-library-status": {
type: Boolean,
default: true
}
},
data: function () {