2022-06-10 10:47:46 +00:00
|
|
|
<template>
|
|
|
|
<section>
|
|
|
|
<h1>Top Artists</h1>
|
|
|
|
<ol class="two-cols top-artist-list">
|
|
|
|
<li v-for="artist in artists" :key="artist.id">
|
|
|
|
<ArtistCard :artist="artist" layout="compact"/>
|
|
|
|
</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 ArtistCard from '@/components/artist/ArtistCard.vue'
|
|
|
|
|
2022-06-10 10:47:46 +00:00
|
|
|
const artists = toRef(overviewStore.state, 'mostPlayedArtists')
|
|
|
|
</script>
|