mirror of
https://github.com/janishutz/MusicPlayer.git
synced 2026-09-10 14:25:24 +02:00
feat: design for queue, add songs, search and more
This commit is contained in:
@@ -1,10 +1,33 @@
|
||||
<script setup lang="ts">
|
||||
import PlayerControls from '@/components/PlayerControls.vue';
|
||||
import QueueViewer from '@/components/QueueViewer.vue';
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<h1>Player</h1>
|
||||
<QueueViewer />
|
||||
<div class="main-app">
|
||||
<div class="player-controls">
|
||||
<PlayerControls />
|
||||
</div>
|
||||
<div class="song-queue">
|
||||
<QueueViewer />
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.main-app {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
|
||||
.player-controls {
|
||||
width: 60%;
|
||||
}
|
||||
|
||||
.song-queue {
|
||||
width: 80%;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user