mirror of
https://github.com/frappe/books.git
synced 2025-01-10 18:24:40 +00:00
88021193fc
- Reports search
30 lines
492 B
Vue
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>
|