Ocelot-Social/webapp/pages/imprint.vue
2020-06-15 15:15:55 +02:00

23 lines
349 B
Vue

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