yt-audio-player

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

ArtistsList.vue (441B)


      1 <script setup lang="ts">
      2 import albums from '../assets/albums.json';
      3 </script>
      4 
      5 <template>
      6     <h2>ArtistList</h2>
      7     <div class="card-deck">
      8         <div class="card m-3" style="width: 18rem;" v-for="(artists, index) in albums" @click="() => $router.push(`/artist/${index}`)">
      9             <div class="card-body">
     10                 <h5 class="card-title">{{ artists.AlbumArtist }}</h5>
     11             </div>
     12         </div>
     13     </div>
     14 </template>