other components... (2)

This commit is contained in:
Paolo Arena
2021-09-16 21:08:02 +02:00
parent fcc4f61f07
commit f351673917
276 changed files with 17183 additions and 3371 deletions

View File

@@ -7,19 +7,24 @@ import { static_data } from '@src/db/static_data'
import { useQuasar } from 'quasar'
import { useGlobalStore } from '@store/globalStore'
import { Logo } from '../logo'
import { Logo } from '@/components/logo'
import { useI18n } from '@src/boot/i18n'
import { FormNewsletter } from '@components'
import { toolsext } from '@store/Modules/toolsext'
import { FormNewsletter } from '@/components/FormNewsletter'
import { CFacebookFrame } from '@/components/CFacebookFrame'
import MixinBase from '../../mixins/mixin-base'
export default defineComponent({
name: 'Footer',
components: { Logo, FormNewsletter },
components: { Logo, FormNewsletter, CFacebookFrame },
setup() {
const $q = useQuasar()
const { t } = useI18n()
const globalStore = useGlobalStore()
const { getarrValDb, getValDb } = MixinBase()
console.log('Footer - INIT')
function TelegramSupport() {
@@ -49,7 +54,7 @@ export default defineComponent({
function ChatWhatsapp() {
// @ts-ignore
return tools.getHttpForWhatsapp(this.Whatsapp_Cell)
return tools.getHttpForWhatsapp(this.Whatsapp_Cell())
}
return {
@@ -61,7 +66,10 @@ export default defineComponent({
FBPage,
Telegram_UsernameHttp,
static_data,
t,
tools,
toolsext,
getarrValDb,
getValDb
}
},
})

View File

@@ -58,7 +58,7 @@
<div class="text-center">
<div class="q-mt-xs mycontacts">
<p class="mycontacts_title">{{ t('homepage.titlecontatti') }}</p>
<p class="mycontacts_title">{{ $t('homepage.titlecontatti') }}</p>
<div class="mycontacts_text">
<i
@@ -126,7 +126,7 @@
<p class="text-center">
<router-link v-if="static_data.functionality.SHOW_ONLY_POLICY" to="/policy" custom v-slot="{ navigate }">
<span class="footer_link" @click="navigate" @keypress.enter="navigate" role="link">{{
t('privacy_policy')
$t('privacy_policy')
}}</span></router-link>
</p>