2
0
mirror of https://github.com/frappe/books.git synced 2025-01-10 18:24:40 +00:00
books/src/pages/Desk.vue
thefalconx33 88021193fc - SalesInvoice renaming typo
- Reports search
2019-08-05 15:03:05 +05:30

30 lines
492 B
Vue

<template>
<div class="row no-gutters d-flex">
<sidebar class="sidebar" />
<div class="page-container bg-white">
<router-view :key="$route.fullPath" />
</div>
</div>
</template>
<script>
import Sidebar from '../components/Sidebar';
export default {
name: 'Desk',
components: {
Sidebar
}
};
</script>
<style>
.page-container {
height: 100vh;
width: 100%;
padding-left: 208px;
overflow-x: hidden;
}
.sidebar {
position: fixed;
z-index: 1;
}
</style>