This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Zaimki/routes/mirror.vue

36 lines
790 B
Vue
Raw Normal View History

2021-11-30 09:50:38 -08:00
<template>
<div>
<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>
</div>
</template>
<script>
import { head, clearLinkedText } from "../src/helpers";
export default {
data() {
return {
clearLinkedText
};
},
head() {
return head({
title: this.config.pronouns.mirror.name,
description: this.config.pronouns.mirror.description,
});
},
};
</script>