2
0
mirror of https://github.com/frappe/books.git synced 2025-02-04 21:18:32 +00:00
books/src/pages/Dashboard/Dashboard.vue

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
920 B
Vue
Raw Normal View History

<template>
<div class="flex flex-col">
2022-04-27 17:32:43 +05:30
<PageHeader :title="t`Dashboard`" />
2022-02-02 16:05:58 +05:30
<div class="mx-4 overflow-y-scroll no-scrollbar">
<!--
<Cashflow class="mt-5" />
<hr class="border-t mt-10" />
2022-05-16 21:40:15 +05:30
-->
<UnpaidInvoices class="mt-10" />
<!--
<hr class="border-t mt-10" />
<div class="flex justify-between mx-auto mt-10 ml-4 mr-4 gap-10">
<ProfitAndLoss class="w-1/2" />
<Expenses class="w-1/2" />
</div>
-->
</div>
</div>
</template>
<script>
2022-04-20 12:08:47 +05:30
import PageHeader from 'src/components/PageHeader';
// import Cashflow from './Cashflow';
// import Expenses from './Expenses';
// import ProfitAndLoss from './ProfitAndLoss';
2022-05-16 21:40:15 +05:30
import UnpaidInvoices from './UnpaidInvoices';
export default {
name: 'Dashboard',
components: {
PageHeader,
2022-05-16 21:40:15 +05:30
UnpaidInvoices,
/*
Cashflow,
ProfitAndLoss,
Expenses,
*/
},
};
</script>