Ocelot-Social/webapp/pages/organization.vue
2021-08-02 16:17:35 +02:00

35 lines
704 B
Vue

<template>
<internal-page
:pageParams="links.ORGANIZATION"
/>
<!-- Wolle <div>
<ds-space margin="small">
<ds-heading tag="h2">{{ $t('site.made') }}</ds-heading>
</ds-space>
<ds-container>
<div v-html="$t('html.organization')" />
</ds-container>
</div> -->
</template>
<script>
import links from '~/constants/links.js'
import InternalPage from '~/components/_new/features/InternalPage/InternalPage.vue'
export default {
layout: 'basic',
components: {
InternalPage,
},
data() {
// Wolle console.log(links.ORGANIZATION)
return { links }
},
// Wolle head() {
// return {
// title: this.$t('site.made'),
// }
// },
}
</script>