Animations, Policy, Toolbar Colors
This commit is contained in:
@@ -1,6 +1,8 @@
|
||||
|
||||
import { defineComponent } from 'vue'
|
||||
import { defineComponent, computed } from 'vue'
|
||||
import { PagePolicy } from '../../components/PagePolicy'
|
||||
import { useUserStore } from '@src/store/UserStore'
|
||||
import { useGlobalStore } from '@src/store/globalStore'
|
||||
|
||||
|
||||
export default defineComponent({
|
||||
@@ -8,7 +10,13 @@ export default defineComponent({
|
||||
components: { PagePolicy },
|
||||
setup(props, { emit }) {
|
||||
|
||||
const userStore = useUserStore()
|
||||
const globalStore = useGlobalStore()
|
||||
|
||||
const site = computed(() => globalStore.site)
|
||||
|
||||
return {
|
||||
site
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
@@ -1,15 +1,16 @@
|
||||
<template>
|
||||
<q-page class="">
|
||||
<div class="landing">
|
||||
<div v-if="site" class="landing">
|
||||
|
||||
<PagePolicy
|
||||
owneremail="info@riso.app"
|
||||
SiteName="Riso.app"
|
||||
ownerDataName="RISO"
|
||||
managerData="Paolo Arena"
|
||||
includeData="recapiti (indirizzo email, telefono (facoltativo))"
|
||||
url="riso.app"
|
||||
lastdataupdate="12/03/2022"
|
||||
country="Italia"
|
||||
:owneremail="site.policy.owneremail"
|
||||
:siteName="site.policy.siteName"
|
||||
:ownerDataName="site.policy.ownerDataName"
|
||||
:managerData="site.policy.managerData"
|
||||
:includeData="site.policy.includeData"
|
||||
:url="site.policy.url"
|
||||
:lastdataupdate="site.policy.lastdataupdate"
|
||||
:country="site.policy.country"
|
||||
>
|
||||
|
||||
</PagePolicy>
|
||||
|
||||
Reference in New Issue
Block a user