mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 20:43:04 +00:00
move global search to right sidebar
This commit is contained in:
@@ -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: {
|
||||
|
||||
Reference in New Issue
Block a user