Move page components into single file

+ Spice it up a little by translating the page component's title.
This commit is contained in:
Robert Schäfer 2019-07-10 00:52:36 +02:00
parent ce397b6746
commit 65679d417d
4 changed files with 40 additions and 0 deletions

View File

@ -12,3 +12,13 @@
</ds-container>
</div>
</template>
<script>
export default {
head() {
return {
title: this.$t('site.changelog'),
}
},
}
</script>

View File

@ -70,3 +70,13 @@
</ds-container>
</div>
</template>
<script>
export default {
head() {
return {
title: this.$t('site.imprint'),
}
},
}
</script>

View File

@ -11,3 +11,13 @@
</ds-container>
</div>
</template>
<script>
export default {
head() {
return {
title: this.$t('site.privacy'),
}
},
}
</script>

View File

@ -11,3 +11,13 @@
</ds-container>
</div>
</template>
<script>
export default {
head() {
return {
title: this.$t('site.termsAc'),
}
},
}
</script>