2022-06-10 10:47:46 +00:00
|
|
|
<template>
|
|
|
|
<section>
|
|
|
|
<h1>New Songs</h1>
|
|
|
|
<ol v-show="songs.length" class="recently-added-song-list">
|
|
|
|
<li v-for="song in songs" :key="song.id">
|
|
|
|
<SongCard :song="song"/>
|
|
|
|
</li>
|
|
|
|
</ol>
|
|
|
|
</section>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
2022-07-07 18:05:46 +00:00
|
|
|
import { toRef } from 'vue'
|
2022-06-10 10:47:46 +00:00
|
|
|
import { overviewStore } from '@/stores'
|
|
|
|
|
2022-07-07 18:05:46 +00:00
|
|
|
import SongCard from '@/components/song/SongCard.vue'
|
2022-06-10 10:47:46 +00:00
|
|
|
|
|
|
|
const songs = toRef(overviewStore.state, 'recentlyAddedSongs')
|
|
|
|
</script>
|