├── src ├── components │ ├── Header.vue │ ├── Balance.vue │ ├── IncomeExpenses.vue │ ├── TransactionList.vue │ ├── AddTransaction.vue │ └── CategoryReport.vue ├── main.js ├── assets │ └── style.css └── App.vue ├── index.html ├── vite.config.js ├── package.json └── README.md /src/components/Header.vue: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 |Balance : {{ formatBalance(total) }}
4 |Income : {{ formatAmount(income) }}
8 |Expense : {{ formatAmount(expenses) }}
15 || Sr.no | 7 |Expense | 8 |Category | 9 |Amount | 10 |Action | 11 |
|---|---|---|---|---|
| {{ index + 1 }} | 20 | 21 |{{ transaction.text }} | 22 |{{ transaction.category }} | 23 |{{ formatAmount(transaction.amount) }} | 24 |25 | 28 | | 29 |
No transactions with categories yet.
12 |