mirror of
https://github.com/frappe/books.git
synced 2024-11-10 15:50:56 +00:00
26 lines
534 B
Vue
26 lines
534 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>
|