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

48 lines
1.1 KiB
Vue
Raw Normal View History

2018-10-23 18:12:36 +05:30
<template>
<div class="flex overflow-hidden">
<Sidebar
class="w-44 flex-shrink-0"
@change-db-file="$emit('change-db-file')"
/>
<div class="flex flex-1 overflow-y-hidden bg-white">
2019-12-05 00:11:29 +05:30
<keep-alive>
<router-view class="flex-1" :key="$route.path" />
</keep-alive>
2019-11-08 16:16:24 +05:30
<div class="flex" v-if="showQuickEdit">
<keep-alive>
2019-11-08 16:16:24 +05:30
<router-view
name="edit"
class="w-80 flex-1"
:key="$route.query.doctype + $route.query.name"
/>
</keep-alive>
</div>
<div
id="toast-container"
class="absolute bottom-0 flex flex-col items-center mb-3"
2022-02-03 17:02:21 +05:30
style="width: calc(100% - 11rem)"
>
<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>