move global search to right sidebar

This commit is contained in:
geoffrey45
2022-01-30 00:58:53 +03:00
parent e847574446
commit 3eef90dc8a
16 changed files with 221 additions and 171 deletions
+4 -5
View File
@@ -4,11 +4,10 @@
<div class="items">
<table>
<tbody>
<SongItem
v-for="(track, index) in props.tracks"
<TrackItem
v-for="track in props.tracks"
:key="track"
:song="track"
:index="index + 1"
:track="track"
/>
</tbody>
</table>
@@ -18,8 +17,8 @@
</template>
<script setup>
import SongItem from "@/components/shared/SongItem.vue";
import LoadMore from "./LoadMore.vue";
import TrackItem from "../shared/TrackItem.vue";
const props = defineProps({
tracks: {