- Aggiunta possibilità di disattivare i link alle immagini dei libri. (opzione sul catalogo: disattiva_link_immagini)
This commit is contained in:
@@ -16,7 +16,7 @@ import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import { useRouter } from 'vue-router'
|
||||
|
||||
import { costanti } from '@costanti'
|
||||
import type { IOptCatalogo, IMyScheda, IProduct } from '@src/model'
|
||||
import type { IOptCatalogo, IMyScheda, IProduct, ICatalog } from '@src/model'
|
||||
|
||||
|
||||
export default defineComponent({
|
||||
@@ -33,6 +33,11 @@ export default defineComponent({
|
||||
required: false,
|
||||
default: null,
|
||||
},
|
||||
myCatalog: {
|
||||
type: Object as PropType<ICatalog | null>,
|
||||
required: false,
|
||||
default: null,
|
||||
},
|
||||
cosa: {
|
||||
type: Number,
|
||||
required: false,
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
@opendetail="opendetail"
|
||||
v-model="optcatalogo"
|
||||
:scheda="scheda"
|
||||
:myCatalog="myCatalog"
|
||||
>
|
||||
</CCatalogoCard>
|
||||
<q-dialog
|
||||
@@ -38,6 +39,7 @@
|
||||
@selauthor="selauthor"
|
||||
@updateproductmodif="updateproductmodif"
|
||||
:scheda="scheda"
|
||||
:myCatalog="myCatalog"
|
||||
>
|
||||
</CCatalogoCard>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user