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

38 lines
877 B
Vue
Raw Normal View History

2018-10-23 18:12:36 +05:30
<template>
<div class="flex overflow-hidden">
<Sidebar class="w-56 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>
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
);
}
2018-10-23 18:12:36 +05:30
}
2019-07-19 18:54:31 +05:30
};
2018-10-23 18:12:36 +05:30
</script>