mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-10-29 18:00:23 +00:00
30 lines
437 B
Vue
30 lines
437 B
Vue
<template>
|
|
<div>
|
|
<h1>Styleguide</h1>
|
|
<div class="row">
|
|
<h2>Chat</h2>
|
|
<Chat />
|
|
</div>
|
|
<div class="row">
|
|
<h2>Playlist-element</h2>
|
|
<Playlist />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
import Playlist from "@/components/playlist/Playlist";
|
|
import Chat from "@/components/chat/Chat";
|
|
|
|
export default {
|
|
components: {
|
|
Chat,
|
|
Playlist
|
|
},
|
|
};
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
</style> |