Files
zoff/frontend/components/Styleguide.vue
Kasper Rynning-Tønnesen a06f965163 Playlist-element
2019-11-16 21:32:43 +01:00

24 lines
326 B
Vue

<template>
<div>
<h1>Styleguide</h1>
<div class="row">
<h2>Playlist-element</h2>
<Playlist />
</div>
</div>
</template>
<script>
import Playlist from "@/components/playlist/Playlist";
export default {
components: {
Playlist
}
}
</script>
<style lang="scss" scoped>
</style>