mirror of
https://github.com/tcsenpai/swingmusic.git
synced 2025-07-28 21:51:41 +00:00
34 lines
550 B
Vue
34 lines
550 B
Vue
<template>
|
|
<div class="search-tracks-view">
|
|
<div class="noscroll">
|
|
<Layout :no_header="true" :tracks="search.tracks.value" />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import Layout from "@/layouts/HeaderAndVList.vue";
|
|
import useSearchStore from "@/stores/search";
|
|
|
|
const search = useSearchStore();
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.search-tracks-view {
|
|
height: 100%;
|
|
|
|
.noscroll {
|
|
height: 100%;
|
|
}
|
|
|
|
.header-list-layout {
|
|
width: 100%;
|
|
}
|
|
|
|
button {
|
|
width: fit-content;
|
|
margin: 0 auto;
|
|
}
|
|
}
|
|
</style>
|