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

21 lines
528 B
Vue
Raw Normal View History

2022-06-10 10:47:46 +00:00
<template>
2022-07-12 14:04:57 +00:00
<section>
2022-06-10 10:47:46 +00:00
<h1>Most Played</h1>
2022-07-12 09:05:12 +00:00
<ol v-if="songs.length" class="top-song-list">
2022-06-10 10:47:46 +00:00
<li v-for="song in songs" :key="song.id">
<SongCard :song="song"/>
</li>
</ol>
2022-07-12 09:05:12 +00:00
<p v-else class="text-secondary">You dont seem to have been playing.</p>
2022-06-10 10:47:46 +00:00
</section>
</template>
<script lang="ts" setup>
import { toRef } from 'vue'
2022-06-10 10:47:46 +00:00
import { overviewStore } from '@/stores'
import SongCard from '@/components/song/SongCard.vue'
2022-06-10 10:47:46 +00:00
const songs = toRef(overviewStore.state, 'mostPlayedSongs')
</script>