2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 19:29:02 +00:00
books/ui/components/Desk.vue
2018-07-12 21:57:23 +05:30

26 lines
535 B
Vue

<template>
<div class="frappe-desk row no-gutters">
<frappe-sidebar :sidebarConfig="sidebarConfig"></frappe-sidebar>
<frappe-main>
<frappe-navbar></frappe-navbar>
<slot></slot>
</frappe-main>
</div>
</template>
<script>
import Sidebar from './Sidebar';
import Main from './Main';
import Navbar from './Navbar';
export default {
props: ['sidebarConfig'],
components: {
FrappeSidebar: Sidebar,
FrappeMain: Main,
FrappeNavbar: Navbar
},
};
</script>
<style>
</style>