Ocelot-Social/webapp/pages/data-privacy.vue
2021-06-02 20:18:11 +02:00

22 lines
377 B
Vue

<template>
<div>
<ds-space margin="small">
<ds-heading tag="h2">{{ $t('site.data-privacy') }}</ds-heading>
</ds-space>
<ds-container>
<div v-html="$t('html.dataPrivacy')" />
</ds-container>
</div>
</template>
<script>
export default {
layout: 'basic',
head() {
return {
title: this.$t('site.data-privacy'),
}
},
}
</script>