2018-10-23 12:42:36 +00:00
|
|
|
<template>
|
2019-08-01 11:52:58 +00:00
|
|
|
<div class="row no-gutters d-flex">
|
|
|
|
<sidebar class="sidebar" />
|
|
|
|
<div class="page-container bg-white">
|
2019-07-19 13:24:31 +00:00
|
|
|
<router-view :key="$route.fullPath" />
|
2018-10-23 12:42:36 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
|
|
import Sidebar from '../components/Sidebar';
|
|
|
|
export default {
|
|
|
|
name: 'Desk',
|
|
|
|
components: {
|
|
|
|
Sidebar
|
|
|
|
}
|
2019-07-19 13:24:31 +00:00
|
|
|
};
|
2018-10-23 12:42:36 +00:00
|
|
|
</script>
|
|
|
|
<style>
|
|
|
|
.page-container {
|
|
|
|
height: 100vh;
|
2019-08-01 11:52:58 +00:00
|
|
|
width: 100%;
|
|
|
|
padding-left: 208px;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
.sidebar {
|
|
|
|
position: fixed;
|
|
|
|
/* flex-basis: 220px; */
|
2018-10-23 12:42:36 +00:00
|
|
|
}
|
|
|
|
</style>
|