add some examples

This commit is contained in:
Philipp Kühn
2018-08-22 14:10:44 +02:00
parent 3a83e3397c
commit 196b77e02e
8 changed files with 208 additions and 16 deletions

View File

@@ -0,0 +1,20 @@
<template>
<div class="page" spellcheck="false">
<navigation />
<div class="page__content">
<router-view />
</div>
</div>
</template>
<script>
import Navigation from 'Components/Navigation'
export default {
components: {
Navigation,
},
}
</script>
<style lang="scss" src="./style.scss"></style>