CSS Animations
This commit is contained in:
@@ -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,
|
||||
}
|
||||
},
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user