Add profile widget
This commit is contained in:
parent
9c6e06c4a8
commit
d1a68d7094
|
|
@ -2,8 +2,8 @@
|
||||||
<div class="container skillbox">
|
<div class="container skillbox">
|
||||||
<header class="header skillbox__header">
|
<header class="header skillbox__header">
|
||||||
<top-navigation></top-navigation>
|
<top-navigation></top-navigation>
|
||||||
<router-link to="/" class="skillbox__header-logo">skillBOX</router-link>
|
<router-link to="/" class="skillbox__header-logo">skillbox</router-link>
|
||||||
<div>Hans Muster</div>
|
<profile></profile>
|
||||||
</header>
|
</header>
|
||||||
<router-view></router-view>
|
<router-view></router-view>
|
||||||
<footer skillbox__footer>Footer</footer>
|
<footer skillbox__footer>Footer</footer>
|
||||||
|
|
@ -12,12 +12,14 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import TopNavigation from "@/components/TopNavigation.vue";
|
import TopNavigation from "@/components/TopNavigation.vue";
|
||||||
|
import Profile from "@/components/Profile.vue";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'App',
|
name: 'App',
|
||||||
|
|
||||||
components: {
|
components: {
|
||||||
TopNavigation
|
TopNavigation,
|
||||||
|
Profile
|
||||||
},
|
},
|
||||||
|
|
||||||
data() {
|
data() {
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue