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
Raw Permalink Normal View History

2020-11-29 02:03:01 -08:00
<template>
<div>
<h2>
2021-09-28 12:34:25 -07:00
{{ clearLinkedText(config.pronouns.null.description) }}
2020-11-29 02:03:01 -08:00
</h2>
<p>
2021-09-28 12:34:25 -07:00
<LinkedText :text="config.pronouns.null.history"/>
2020-11-29 02:03:01 -08:00
</p>
2021-09-28 12:34:25 -07:00
<Avoiding/>
2020-11-29 02:03:01 -08:00
</div>
</template>
<script>
2021-09-28 12:34:25 -07:00
import { head, clearLinkedText } from "../src/helpers";
2020-11-29 02:03:01 -08:00
export default {
data() {
return {
2021-09-28 12:34:25 -07:00
clearLinkedText
};
},
2020-11-29 02:03:01 -08:00
head() {
return head({
2021-09-28 12:34:25 -07:00
title: this.config.pronouns.null.description,
description: this.config.pronouns.null.history,
2020-11-29 02:03:01 -08:00
});
},
};
</script>