add subnavigation component

This commit is contained in:
Philipp Kühn
2018-08-23 07:53:08 +02:00
parent a080c2be72
commit b01582f376
5 changed files with 82 additions and 59 deletions

View File

@@ -2,6 +2,7 @@
<div class="page" spellcheck="false">
<navigation />
<subnavigation />
<div class="page__content">
<router-view />
@@ -23,12 +24,14 @@
<script>
import Navigation from 'Components/Navigation'
import Subnavigation from 'Components/Subnavigation'
import Icon from 'Components/Icon'
import Ad from 'Components/Ad'
export default {
components: {
Navigation,
Subnavigation,
Icon,
Ad,
},