mirror of
https://github.com/koel/koel
synced 2024-12-20 17:43:36 +00:00
19 lines
543 B
Vue
19 lines
543 B
Vue
<template>
|
|
<section>
|
|
<h1>Top Albums</h1>
|
|
<ol v-if="albums.length" class="two-cols top-album-list">
|
|
<li v-for="album in albums" :key="album.id">
|
|
<AlbumCard :album="album" layout="compact"/>
|
|
</li>
|
|
</ol>
|
|
<p v-else class="text-secondary">No albums found.</p>
|
|
</section>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { toRef } from 'vue'
|
|
import { overviewStore } from '@/stores'
|
|
import AlbumCard from '@/components/album/AlbumCard.vue'
|
|
|
|
const albums = toRef(overviewStore.state, 'mostPlayedAlbums')
|
|
</script>
|