Files
myprojplanet_vite/src/components/PagePolicy/PagePolicy.ts

26 lines
529 B
TypeScript
Raw Normal View History

2021-09-16 21:08:02 +02:00
import { defineComponent } from 'vue'
2022-07-10 01:24:54 +02:00
import { LandingFooter } from '@/components/LandingFooter'
2021-09-16 21:08:02 +02:00
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],
},
2022-07-10 01:24:54 +02:00
components: { LandingFooter },
2021-09-16 21:08:02 +02:00
setup(props, { emit }) {
return {
toolsext,
}
}
})