2019-07-23 20:44:06 +02:00
|
|
|
import Vue from 'vue'
|
|
|
|
|
|
|
|
|
|
import { GlobalStore, UserStore } from '@modules'
|
|
|
|
|
import { Logo } from '../logo'
|
|
|
|
|
|
|
|
|
|
import { Component, Prop } from 'vue-property-decorator'
|
|
|
|
|
import { tools } from '@src/store/Modules/tools'
|
|
|
|
|
import { toolsext } from '@src/store/Modules/toolsext'
|
|
|
|
|
|
|
|
|
|
import { db_data } from '@src/db/db_data'
|
|
|
|
|
import { static_data } from '@src/db/static_data'
|
|
|
|
|
|
|
|
|
|
import Quasar from 'quasar'
|
|
|
|
|
import { FormNewsletter } from '../FormNewsletter'
|
2019-11-04 20:29:35 +01:00
|
|
|
import { IUserState } from '../../model'
|
2019-11-05 23:53:18 +01:00
|
|
|
import MixinBase from '../../mixins/mixin-base'
|
2019-07-23 20:44:06 +02:00
|
|
|
|
|
|
|
|
@Component({
|
2019-11-05 23:53:18 +01:00
|
|
|
mixins: [MixinBase],
|
2019-07-23 20:44:06 +02:00
|
|
|
name: 'Footer',
|
|
|
|
|
components: { Logo, FormNewsletter }
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
export default class Footer extends Vue {
|
|
|
|
|
public $t
|
|
|
|
|
public $v
|
|
|
|
|
public $q
|
|
|
|
|
|
2019-09-12 16:19:23 +02:00
|
|
|
get tools() {
|
|
|
|
|
return tools
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-19 22:56:19 +02:00
|
|
|
get mythis() {
|
|
|
|
|
return this
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-23 20:44:06 +02:00
|
|
|
get TelegramSupport() {
|
2019-11-04 20:29:35 +01:00
|
|
|
return GlobalStore.getters.getValueSettingsByKey('TELEGRAM_SUPPORT')
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
get Whatsapp_Cell() {
|
|
|
|
|
return GlobalStore.getters.getValueSettingsByKey('WHATSAPP_CELL')
|
2019-07-23 20:44:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
get FBPage() {
|
2019-11-04 20:29:35 +01:00
|
|
|
const fb = GlobalStore.getters.getValueSettingsByKey('URL_FACEBOOK')
|
|
|
|
|
return fb
|
2019-07-23 20:44:06 +02:00
|
|
|
}
|
|
|
|
|
|
2019-08-08 16:55:14 +02:00
|
|
|
get InstagramPage() {
|
2019-11-04 20:29:35 +01:00
|
|
|
const insta = GlobalStore.getters.getValueSettingsByKey('URL_INSTAGRAM')
|
|
|
|
|
return insta
|
2019-08-08 16:55:14 +02:00
|
|
|
}
|
|
|
|
|
|
2019-11-04 20:29:35 +01:00
|
|
|
get static_data() {
|
2019-07-23 20:44:06 +02:00
|
|
|
return static_data
|
|
|
|
|
}
|
2019-11-04 20:29:35 +01:00
|
|
|
|
2019-11-05 23:53:18 +01:00
|
|
|
get ChatWhatsapp() {
|
|
|
|
|
return tools.getHttpForWhatsapp(this.Whatsapp_Cell)
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-23 20:44:06 +02:00
|
|
|
}
|