2
0
mirror of https://github.com/frappe/books.git synced 2025-01-27 09:08:24 +00:00
books/src/pages/Desk.vue

54 lines
1.2 KiB
Vue
Raw Normal View History

2018-10-23 18:12:36 +05:30
<template>
<div class="flex overflow-hidden">
<Sidebar
class="w-48 flex-shrink-0"
@change-db-file="$emit('change-db-file')"
/>
<div class="flex flex-1 overflow-y-hidden bg-white">
<router-view class="flex-1" :key="$route.path" v-slot="{ Component }">
<keep-alive>
<component :is="Component" />
</keep-alive>
</router-view>
<div class="flex" v-if="showQuickEdit">
<router-view
name="edit"
class="w-80 flex-1"
:key="$route.query.doctype + $route.query.name"
v-slot="{ Component }"
>
<keep-alive>
<component :is="Component" />
</keep-alive>
</router-view>
</div>
<div
id="toast-container"
class="absolute bottom-0 flex flex-col items-center mb-3"
style="width: calc(100% - 12rem)"
>
<div id="toast-target" />
</div>
2018-10-23 18:12:36 +05:30
</div>
</div>
</template>
<script>
import Sidebar from '../components/Sidebar';
export default {
name: 'Desk',
components: {
Sidebar,
2019-11-08 16:16:24 +05:30
},
computed: {
showQuickEdit() {
return (
this.$route.query.edit &&
this.$route.query.doctype &&
this.$route.query.name
);
},
},
2019-07-19 18:54:31 +05:30
};
2018-10-23 18:12:36 +05:30
</script>