playlist/album revamp, temp disabled inline playlists

revamped playlists/albums pages

temporarily disabled inline versions until they are updated
This commit is contained in:
booploops 2022-04-20 21:43:26 -07:00
parent 355495c6da
commit 26d17be145
7 changed files with 216 additions and 152 deletions

View file

@ -1,5 +1,5 @@
<script type="text/x-template" id="mediaitem-scroller-horizontal">
<vue-horizontal>
<vue-horizontal ref="horizontal">
<slot></slot>
<mediaitem-square :key="item?.id ?? ''" :kind="kind" :item="item" v-for="item in items"></mediaitem-square>
</vue-horizontal>
@ -24,6 +24,9 @@
app: this.$root,
}
},
mounted() {
// this.$refs.horizontal.refresh()
},
methods: {}
});
</script>