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