Notifica Telegram e Push quando mandi la stretta di mano

This commit is contained in:
Surya Paolo
2023-06-07 10:15:10 +02:00
parent bd3a9557e2
commit 57eb8ee203
12 changed files with 80 additions and 26 deletions

View File

@@ -1,4 +1,4 @@
import { computed, defineComponent, PropType, ref } from 'vue'
import { computed, defineComponent, onMounted, PropType, ref } from 'vue'
import { ICalcStat, IOperators } from '../../model'
import { useUserStore } from '../../store/UserStore'
@@ -27,12 +27,20 @@ export default defineComponent({
const globalStore = useGlobalStore()
const site = ref(globalStore.site)
const username_telegram_aportador = ref('')
function load() {
///
}
onMounted(load)
return {
userStore,
globalStore,
tools,
site,
username_telegram_aportador,
}
},
})