mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 12:33:03 +00:00
add search page
This commit is contained in:
@@ -41,11 +41,6 @@ const search = useSearchStore();
|
||||
defineProps<{
|
||||
album_grid?: boolean;
|
||||
}>();
|
||||
|
||||
// function loadMore() {
|
||||
// search.updateLoadCounter("artists");
|
||||
// search.loadArtists(search.loadCounter.artists);
|
||||
// }
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
@@ -56,7 +51,7 @@ defineProps<{
|
||||
|
||||
.search-results-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
|
||||
gap: 0.75rem;
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -29,7 +29,7 @@
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { onMounted, ref } from "vue";
|
||||
import { onMounted } from "vue";
|
||||
import QueueSvg from "../../assets/icons/queue.svg";
|
||||
import SearchSvg from "../../assets/icons/search.svg";
|
||||
import useSearchStore from "../../stores/search";
|
||||
|
||||
Reference in New Issue
Block a user