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/avoiding.vue

32 lines
650 B
Vue

<template>
<div>
<h2>
{{ clearLinkedText(config.pronouns.null.description) }}
</h2>
<p>
<LinkedText :text="config.pronouns.null.history"/>
</p>
<Avoiding/>
</div>
</template>
<script>
import { head, clearLinkedText } from "../src/helpers";
export default {
data() {
return {
clearLinkedText
};
},
head() {
return head({
title: this.config.pronouns.null.description,
description: this.config.pronouns.null.history,
});
},
};
</script>