2
0
mirror of https://github.com/frappe/books.git synced 2025-01-25 16:18:33 +00:00
books/src/pages/Desk.vue

25 lines
424 B
Vue
Raw Normal View History

2018-10-23 18:12:36 +05:30
<template>
<div class="row no-gutters">
<sidebar class="col-2" />
<div class="page-container col-10 bg-light">
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;
overflow: auto;
overflow-x: hidden;
}
</style>