mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
36 lines
716 B
Vue
36 lines
716 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 {
|
|
components: {
|
|
InternalPage,
|
|
},
|
|
// Wolle
|
|
layout: 'basic',
|
|
data() {
|
|
// Wolle console.log(links.ORGANIZATION)
|
|
return { links }
|
|
},
|
|
// Wolle head() {
|
|
// return {
|
|
// title: this.$t('site.made'),
|
|
// }
|
|
// },
|
|
}
|
|
</script>
|