mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-03 20:13:02 +00:00
16 lines
381 B
Vue
16 lines
381 B
Vue
<template>
|
|
<div class="search-albums-view grid-page" v-auto-animate>
|
|
<AlbumCard
|
|
v-for="album in search.albums.value"
|
|
:key="album.albumhash"
|
|
:album="album"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import AlbumCard from "@/components/shared/AlbumCard.vue";
|
|
import useSearchStore from "@/stores/search";
|
|
|
|
const search = useSearchStore();
|
|
</script> |