mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-10-29 18:00:23 +00:00
35 lines
550 B
Vue
35 lines
550 B
Vue
<template>
|
|
<div>
|
|
<div class="parallel-containers">
|
|
<Player class="player" />
|
|
<Playlist class="playlist" />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import store from "@/store";
|
|
import Player from "@/components/player/Player";
|
|
import Playlist from "@/components/playlist/Playlist";
|
|
|
|
export default {
|
|
components: {
|
|
Player,
|
|
Playlist
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.parallel-containers {
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
& .player {
|
|
width: 100%;
|
|
}
|
|
& .playlist {
|
|
width: 40vw;
|
|
}
|
|
}
|
|
</style> |