- aggiornamento Cataloghi

- Gestione delle versioni del prodotto ("Nuovi","Usati","Epub", ecc..)
This commit is contained in:
Surya Paolo
2024-06-20 17:22:46 +02:00
parent 49d51712bd
commit 2ffcf56625
55 changed files with 659 additions and 400 deletions

View File

@@ -8,6 +8,8 @@ import { CMyPage } from '@/components/CMyPage'
import { CCheckIfIsLogged } from '@/components/CCheckIfIsLogged'
import { toolsext } from '@store/Modules/toolsext'
import { tools } from '@store/Modules/tools'
import { shared_consts } from '@src/common/shared_vuejs'
export default defineComponent({
name: 'mypagegood',
@@ -19,6 +21,7 @@ export default defineComponent({
const $q = useQuasar()
const { t } = useI18n()
const idGood = computed(() => $route.params.idGood ? $route.params.idGood.toString() : 0)
return {
@@ -26,6 +29,7 @@ export default defineComponent({
idGood,
toolsext,
tools,
shared_consts,
}
}
})