vers: 1.1.3

- aggiornato ncu -u
This commit is contained in:
Surya Paolo
2024-10-03 17:10:04 +02:00
parent 38862311ee
commit f9277f3a01
121 changed files with 2460 additions and 3597364 deletions

View File

@@ -26,9 +26,14 @@ export default defineComponent({
const { t } = useI18n();
const productStore = useProducts()
const endload = ref(false)
async function mounted() {
// Inizializza
await productStore.loadProducts()
endload.value = true
}
onMounted(mounted)
@@ -41,6 +46,7 @@ export default defineComponent({
shared_consts,
t,
products,
endload,
}
}
})

View File

@@ -1,5 +1,5 @@
<template>
<q-page>
<q-page v-if="endload">
<CTitleBanner :title="t('ecomm.carrello_di', {user: products.userActive.username})"></CTitleBanner>
<CCart>
</CCart>