Quando si inserisce un evento, su giunge alla fine, si salva, NON SI MEMORIZZANO foto, data e orario!

This commit is contained in:
Surya Paolo
2023-06-07 17:25:14 +02:00
parent 9908558bf7
commit 1a57d5a2e3
11 changed files with 239 additions and 57 deletions

View File

@@ -58,7 +58,7 @@ export default defineComponent({
const idnotif = computed(() => $route.query.idnotif ? $route.query.idnotif.toString() : '')
const isDebugOn = computed(() => tools.isDebugOn())
const $router = useRouter()
const filtroutente = ref(<any[]>[])
const showPic = ref(false)
const caricato = ref(false)
@@ -170,6 +170,10 @@ export default defineComponent({
onMounted(mounted)
function gotoPage(link: string) {
$router.push(link)
}
return {
username,
profile,
@@ -205,6 +209,7 @@ export default defineComponent({
handshake_inCommon,
globalStore,
getLinkWebSite,
gotoPage,
}
}
})