++ DebugOn status (to see what happened)

fix visu activities
This commit is contained in:
Surya Paolo
2022-12-14 22:07:23 +01:00
parent bd0eab53ae
commit fbcd076705
22 changed files with 69 additions and 33 deletions

View File

@@ -1,4 +1,5 @@
import {
computed,
defineComponent, onMounted, PropType, ref, toRef, watch,
} from 'vue'
@@ -100,6 +101,8 @@ export default defineComponent({
const myel = toRef(props, 'myelem')
const newtype = ref(<any>'')
const isAppRunning = computed(() => globalStore.isAppRunning )
watch(() => myel.value.order, (value, oldval) => {
mounted()
})
@@ -280,6 +283,7 @@ export default defineComponent({
visushare,
social,
clickshare,
isAppRunning,
}
},