Animations, Policy, Toolbar Colors
This commit is contained in:
@@ -27,6 +27,8 @@ export default defineComponent({
|
||||
const userStore = useUserStore()
|
||||
const globalStore = useGlobalStore()
|
||||
|
||||
const site = computed(() => globalStore.site)
|
||||
|
||||
const { getMyUsername, Username } = MixinUsers()
|
||||
|
||||
function mounted() {
|
||||
@@ -42,6 +44,7 @@ export default defineComponent({
|
||||
getMyUsername,
|
||||
Username,
|
||||
tools,
|
||||
site,
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<q-footer
|
||||
v-if="tools.isUserOk()"
|
||||
v-if="tools.isUserOk() && site"
|
||||
class="bg-white small-screen-only"
|
||||
bordered
|
||||
>
|
||||
@@ -14,6 +14,7 @@
|
||||
indicator-color="transparent"
|
||||
>
|
||||
<q-route-tab
|
||||
v-if="site.footer_mobile?.show_buttHome"
|
||||
to="/"
|
||||
class="mylabfooter"
|
||||
:label="$t('tabdown.home')"
|
||||
@@ -48,7 +49,7 @@
|
||||
icon="fas fa-calendar-plus"
|
||||
/>
|
||||
<q-route-tab
|
||||
v-if="static_data.functionality.ENABLE_VIEW_PROFILE"
|
||||
v-if="site.footer_mobile.show_profile"
|
||||
class="mylabfooter"
|
||||
:label="$t('tabdown.profile')"
|
||||
:to="`/my/`+getMyUsername()"
|
||||
|
||||
Reference in New Issue
Block a user