2019-11-22 23:13:32 +05:30
|
|
|
<template>
|
|
|
|
<div class="flex flex-col">
|
2022-04-27 17:32:43 +05:30
|
|
|
<PageHeader :title="t`Dashboard`" />
|
2022-05-14 14:16:05 +05:30
|
|
|
|
2022-02-02 16:05:58 +05:30
|
|
|
<div class="mx-4 overflow-y-scroll no-scrollbar">
|
2022-05-14 14:16:05 +05:30
|
|
|
<!--
|
2022-01-27 00:30:11 +05:30
|
|
|
<Cashflow class="mt-5" />
|
2022-01-26 13:08:22 +05:30
|
|
|
<hr class="border-t mt-10" />
|
2022-05-16 21:40:15 +05:30
|
|
|
-->
|
|
|
|
|
|
|
|
<UnpaidInvoices class="mt-10" />
|
|
|
|
<!--
|
2022-01-26 13:08:22 +05:30
|
|
|
<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" />
|
2019-11-22 23:13:32 +05:30
|
|
|
</div>
|
2022-05-14 14:16:05 +05:30
|
|
|
-->
|
2019-11-22 23:13:32 +05:30
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2022-04-20 12:08:47 +05:30
|
|
|
import PageHeader from 'src/components/PageHeader';
|
2022-05-14 14:16:05 +05:30
|
|
|
// import Cashflow from './Cashflow';
|
|
|
|
// import Expenses from './Expenses';
|
|
|
|
// import ProfitAndLoss from './ProfitAndLoss';
|
2022-05-16 21:40:15 +05:30
|
|
|
import UnpaidInvoices from './UnpaidInvoices';
|
2019-11-22 23:13:32 +05:30
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'Dashboard',
|
|
|
|
components: {
|
|
|
|
PageHeader,
|
2022-05-16 21:40:15 +05:30
|
|
|
UnpaidInvoices,
|
2022-05-14 14:16:05 +05:30
|
|
|
/*
|
2019-11-24 23:39:22 +05:30
|
|
|
Cashflow,
|
|
|
|
ProfitAndLoss,
|
2022-01-26 13:08:22 +05:30
|
|
|
Expenses,
|
2022-05-14 14:16:05 +05:30
|
|
|
*/
|
2022-01-26 13:08:22 +05:30
|
|
|
},
|
2019-11-22 23:13:32 +05:30
|
|
|
};
|
|
|
|
</script>
|