PronounsPage/routes/mirror.vue

38 lines
835 B
Vue

<template>
<Page>
<h2>
{{ clearLinkedText($config.pronouns.mirror.name) }}
</h2>
<p>
<LinkedText :text="$config.pronouns.mirror.description" />
</p>
<ul>
<li v-for="example in $config.pronouns.mirror.example">
<LinkedText :text="example" />
</li>
</ul>
<AdPlaceholder :phkey="['content-0', 'content-mobile-0']" />
</Page>
</template>
<script>
import { head, clearLinkedText } from '../src/helpers.ts';
export default {
data() {
return {
clearLinkedText,
};
},
head() {
return head({
title: this.$config.pronouns.mirror.name,
description: this.$config.pronouns.mirror.description,
}, this.$translator);
},
};
</script>