2018-10-23 18:12:36 +05:30
|
|
|
<template>
|
2019-10-03 19:16:12 +05:30
|
|
|
<div class="flex">
|
|
|
|
<Sidebar />
|
|
|
|
<div class="bg-white">
|
2019-07-19 18:54:31 +05:30
|
|
|
<router-view :key="$route.fullPath" />
|
2018-10-23 18:12:36 +05:30
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
|
|
import Sidebar from '../components/Sidebar';
|
|
|
|
export default {
|
|
|
|
name: 'Desk',
|
|
|
|
components: {
|
|
|
|
Sidebar
|
|
|
|
}
|
2019-07-19 18:54:31 +05:30
|
|
|
};
|
2018-10-23 18:12:36 +05:30
|
|
|
</script>
|
|
|
|
<style>
|
|
|
|
.page-container {
|
|
|
|
height: 100vh;
|
2019-08-20 14:27:27 +05:30
|
|
|
max-height: 100vh;
|
2019-08-01 17:22:58 +05:30
|
|
|
width: 100%;
|
|
|
|
padding-left: 208px;
|
2019-08-01 18:30:52 +05:30
|
|
|
overflow-x: hidden;
|
2019-08-01 17:22:58 +05:30
|
|
|
}
|
|
|
|
.sidebar {
|
|
|
|
position: fixed;
|
2019-08-20 14:27:27 +05:30
|
|
|
z-index: 20;
|
2018-10-23 18:12:36 +05:30
|
|
|
}
|
|
|
|
</style>
|