Add sidebar to the blank layout
This commit is contained in:
parent
99ef303c4d
commit
c0cbffecbc
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue