koel/resources/assets/js/components/screens/home/MostPlayedSongs.vue

20 lines
449 B
Vue

<template>
<section v-if="songs.length">
<h1>Most Played</h1>
<ol class="top-song-list">
<li v-for="song in songs" :key="song.id">
<SongCard :song="song"/>
</li>
</ol>
</section>
</template>
<script lang="ts" setup>
import { toRef } from 'vue'
import { overviewStore } from '@/stores'
import SongCard from '@/components/song/SongCard.vue'
const songs = toRef(overviewStore.state, 'mostPlayedSongs')
</script>