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
|
|
@ -15,8 +15,11 @@ export const useBudgetStore = defineStore(
|
|||
// Production costs (variable monthly)
|
||||
const productionCosts = ref([]);
|
||||
|
||||
// Current selected period
|
||||
const currentPeriod = ref("2024-01");
|
||||
// Current selected period - use current month/year
|
||||
const currentDate = new Date();
|
||||
const currentYear = currentDate.getFullYear();
|
||||
const currentMonth = String(currentDate.getMonth() + 1).padStart(2, '0');
|
||||
const currentPeriod = ref(`${currentYear}-${currentMonth}`);
|
||||
|
||||
// Computed current budget
|
||||
const currentBudget = computed(() => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue