- Aggiornati margini.

- Cataloghi: Export ed Import di una pagine ed i suoi elementi !
This commit is contained in:
Surya Paolo
2024-12-13 18:10:04 +01:00
parent 29c59588c7
commit 8baf1e99f0
39 changed files with 752 additions and 141 deletions

61
src/components/CText/CText.ts Executable file
View File

@@ -0,0 +1,61 @@
import {
PropType,
computed,
defineComponent, onBeforeMount, onBeforeUnmount, onMounted, ref, toRef, toRefs, watch,
} from 'vue'
import { tools } from '@store/Modules/tools'
import { ICatalogo, IMyScheda, IProduct, ISchedaSingola, IText } from '@src/model'
import { useProducts } from '@store/Products'
import { useGlobalStore } from '@src/store/globalStore'
import { costanti } from '@costanti'
export default defineComponent({
name: 'CText',
props: {
rectext: {
type: Object as PropType<IText>,
required: true,
},
myproduct: {
type: Object as PropType<IProduct>,
required: true,
},
optcatalogo: {
type: Object as PropType<ICatalogo>,
required: true,
},
scheda: {
type: Object as PropType<IMyScheda>,
required: true,
},
show_at_right: {
type: Boolean,
required: false,
default: false,
},
},
setup(props, { attrs, slots, emit }) {
const globalStore = useGlobalStore()
const products = useProducts()
const getTesto = computed(() => {
return products.replaceKeyWordsByProduct(
props.optcatalogo,
props.myproduct,
props.rectext,
)
})
return {
tools,
getTesto,
globalStore,
costanti,
}
},
})