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