mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-10-29 18:00:23 +00:00
Made a channel page
This commit is contained in:
35
frontend/components/Channel.vue
Normal file
35
frontend/components/Channel.vue
Normal file
@@ -0,0 +1,35 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user