This commit is contained in:
Kasper Rynning-Tønnesen
2019-11-17 00:10:58 +01:00
parent 4aa216947a
commit 0501a7ebbb
4 changed files with 235 additions and 6 deletions

View File

@@ -2,8 +2,12 @@
<div>
<h1>Styleguide</h1>
<div class="row">
<h2>Playlist-element</h2>
<Playlist />
<h2>Chat</h2>
<Chat />
</div>
<div class="row">
<h2>Playlist-element</h2>
<Playlist />
</div>
</div>
</template>
@@ -11,12 +15,14 @@
<script>
import Playlist from "@/components/playlist/Playlist";
import Chat from "@/components/chat/Chat";
export default {
components: {
Playlist
}
}
components: {
Chat,
Playlist
},
};
</script>