- aggiornato la versione STAMPA, che non funzionava

This commit is contained in:
Surya Paolo
2025-07-07 09:37:48 +02:00
parent e7ead2e66a
commit ee5ac4e554
72 changed files with 3594023 additions and 48 deletions

View File

@@ -63,6 +63,7 @@ async function getConfig(id: any) {
export const useGlobalStore = defineStore('GlobalStore', {
state: (): IGlobalState => ({
showHeader: true,
inStampa: false,
finishLoading: false,
conta: 0,
wasAlreadySubscribed: false,
@@ -804,6 +805,7 @@ export const useGlobalStore = defineStore('GlobalStore', {
inmenu: page.inmenu,
onlySocioResidente: page.only_residenti,
onlyConsiglio: page.only_consiglio,
onlyCollaboratore: page.only_collab,
onlyAdmin: page.only_admin,
color: page.color,
infooter: page.infooter,
@@ -3254,5 +3256,9 @@ export const useGlobalStore = defineStore('GlobalStore', {
setshowHeader(value: boolean) {
this.showHeader = value;
},
setinStampa(value: boolean) {
this.inStampa = value;
// console.log('inStampa', this.inStampa)
},
},
});