- Aggiornati margini.
- Cataloghi: Export ed Import di una pagine ed i suoi elementi !
This commit is contained in:
61
src/components/CText/CText.ts
Executable file
61
src/components/CText/CText.ts
Executable 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,
|
||||
}
|
||||
},
|
||||
})
|
||||
Reference in New Issue
Block a user