mirror of
https://github.com/frappe/books.git
synced 2025-01-11 02:36:14 +00:00
25 lines
400 B
Vue
25 lines
400 B
Vue
|
<template>
|
||
|
<div class="row no-gutters">
|
||
|
<sidebar class="col-2" />
|
||
|
<div class="page-container col-10 bg-light">
|
||
|
<router-view />
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
<script>
|
||
|
import Sidebar from '../components/Sidebar';
|
||
|
export default {
|
||
|
name: 'Desk',
|
||
|
components: {
|
||
|
Sidebar
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
<style>
|
||
|
.page-container {
|
||
|
height: 100vh;
|
||
|
overflow: auto;
|
||
|
overflow-x: hidden;
|
||
|
}
|
||
|
</style>
|