Files
myprojplanet_vite/src/components/PagePolicy/PagePolicy.ts
Paolo Arena 42cb624f41 Pannello Utente
Aggiornamento Yarn
2022-07-10 01:24:54 +02:00

26 lines
529 B
TypeScript
Executable File

import { defineComponent } from 'vue'
import { LandingFooter } from '@/components/LandingFooter'
import { toolsext } from '@store/Modules/toolsext'
export default defineComponent({
name: 'PagePolicy',
props: {
owneremail: [String],
SiteName: [String],
ownerDataName: [String],
managerData: [String],
includeData: [String],
url: [String],
lastdataupdate: [String],
country: [String],
},
components: { LandingFooter },
setup(props, { emit }) {
return {
toolsext,
}
}
})