CSS Animations

This commit is contained in:
Surya Paolo
2022-11-18 18:54:30 +01:00
parent 495abc33be
commit a56ee80fbb
30 changed files with 1131 additions and 251 deletions

View File

@@ -1,5 +1,5 @@
import {
defineComponent,
defineComponent, ref,
} from 'vue'
import { tools } from '@src/store/Modules/tools'
@@ -25,6 +25,8 @@ export default defineComponent({
const { getarrValDb, getValDb } = MixinBase()
const site = ref(globalStore.site)
console.log('LandingFooter - INIT')
function TelegramSupport() {
@@ -36,7 +38,10 @@ export default defineComponent({
}
function Telegram_UsernameHttp() {
return tools.getHttpForTelegram(globalStore.getValueSettingsByKey('TELEGRAM_USERNAME', false))
if (site.value!.contacts!.telegram)
return tools.getHttpForTelegram(site.value!.contacts!.telegram)
else
return ''
}
function FBPage() {
@@ -54,7 +59,7 @@ export default defineComponent({
function ChatWhatsapp() {
// @ts-ignore
return tools.getHttpForWhatsapp(this.Whatsapp_Cell())
return tools.getHttpForWhatsapp(site.value.contacts.whatsapp)
}
return {
@@ -69,7 +74,8 @@ export default defineComponent({
tools,
toolsext,
getarrValDb,
getValDb
getValDb,
site,
}
},
})