We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5a7b96 commit a1813b5Copy full SHA for a1813b5
apps/nuxt/src/pages/TeeBudgetPage.vue
@@ -162,14 +162,16 @@ definePageMeta({
162
const navigation = new Navigation()
163
const budgetChartCanvas = ref<HTMLCanvasElement | null>(null)
164
165
-const budgetLabels = ['Design', 'Développement et Data engineering', 'Pilotage', 'Coaching', 'BizDev']
+const budgetLabels = ['Design', 'Développement et Data engineering', 'Pilotage', 'Coaching', 'BizDev', 'Frais annexes']
166
const budgetData = {
167
- 2023: [83194, 164674, 154627, 48600, 10819],
168
- 2024: [152552.4, 439117.59, 192628.8, 61862.4, 172558.18]
+ 2023: [83194, 164674, 154627, 48600, 10819, 0],
+ 2024: [157685, 444292, 191755, 65230, 183402, 3764],
169
+ 2025: [141960, 301069, 177341, 60264, 216129, 10764]
170
}
171
const yearsLabels = {
172
2023: 2023,
- 2024: '2024 (Prévisionnel)'
173
+ 2024: 2024,
174
+ 2025: '2025 (Prévisionnel)'
175
176
const yearlyTotals = computed(() => {
177
return Object.entries(budgetData).reduce(
0 commit comments