chore: update application configuration and UI components for improved styling and functionality
This commit is contained in:
parent
0af6b17792
commit
37ab8d7bab
54 changed files with 23293 additions and 1666 deletions
|
|
@ -10,9 +10,9 @@ export const useCashStore = defineStore("cash", () => {
|
|||
// Week that first breaches minimum cushion
|
||||
const firstBreachWeek = ref(null);
|
||||
|
||||
// Current cash and savings balances
|
||||
const currentCash = ref(5000);
|
||||
const currentSavings = ref(8000);
|
||||
// Current cash and savings balances - start with zeros
|
||||
const currentCash = ref(0);
|
||||
const currentSavings = ref(0);
|
||||
|
||||
// Computed weekly projections
|
||||
const weeklyProjections = computed(() => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue