Add sidebar to the blank layout

This commit is contained in:
Ramon Wenger 2020-02-18 09:21:32 +01:00
parent 99ef303c4d
commit c0cbffecbc
1 changed files with 3 additions and 2 deletions

View File

@ -1,5 +1,6 @@
<template>
<div class="blank-layout">
<profile-sidebar></profile-sidebar>
<router-view></router-view>
</div>
</template>
@ -14,9 +15,9 @@
</style>
<script>
import ProfileSidebar from '@/components/profile/ProfileSidebar';
export default {
components: {},
components: {ProfileSidebar},
}
</script>