mirror of
https://github.com/janishutz/MusicPlayer.git
synced 2026-09-10 14:25:24 +02:00
24 lines
488 B
Vue
24 lines
488 B
Vue
<script setup lang="ts">
|
|
import PlayerWrapper from '@/components/main/PlayerWrapper.vue';
|
|
import PlaylistsComponent from '@/components/main/PlaylistsComponent.vue';
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div class="main-app">
|
|
<PlaylistsComponent />
|
|
<PlayerWrapper />
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
.main-app {
|
|
width: 100%;
|
|
height: 100vh;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: row;
|
|
}
|
|
</style>
|