ver 1.0.19

This commit is contained in:
Surya Paolo
2023-11-03 12:49:17 +01:00
parent cb11903707
commit a071d17410
28 changed files with 144 additions and 103 deletions

View File

@@ -1,4 +1,4 @@
import { defineComponent, onMounted, PropType, ref, watch } from 'vue'
import { defineComponent, onMounted, PropType, ref, watch, computed } from 'vue'
import { useUserStore } from '@store/UserStore'
import { IImgGallery, IUserFields, IUserProfile } from 'model'
import { costanti } from '@costanti'
@@ -49,6 +49,9 @@ export default defineComponent({
const myrec = ref(<any>null)
const visupage = ref(false)
const disabilita = computed(() => {
return props.table === shared_consts.TABLES_MYBACHECAS
})
watch(() => props.prop_myrec, (newval, oldval) => {
@@ -125,6 +128,7 @@ export default defineComponent({
getNameToShow,
isPartecipero,
calendarStore,
disabilita,
}
},
})