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.

36 lines
769 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-05-17 13:38:12 +05:30
<div class="mx-4 overflow-y-scroll no-scrollbar flex flex-col gap-8">
<Cashflow class="" />
<hr />
<UnpaidInvoices />
<hr />
<div class="flex gap-8">
<ProfitAndLoss class="w-full" />
<Expenses class="w-full" />
</div>
</div>
</div>
</template>
<script>
2022-04-20 12:08:47 +05:30
import PageHeader from 'src/components/PageHeader';
2022-05-16 23:49:22 +05:30
import Cashflow from './Cashflow';
2022-05-17 13:38:12 +05:30
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>