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.
2020-11-29 02:03:01 -08:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<h2>
|
|
|
|
<T>pronouns.avoiding.header</T>
|
|
|
|
</h2>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<T>pronouns.avoiding.description</T>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<section v-for="idea in $t('pronouns.avoiding.ideas')">
|
|
|
|
<h3>{{idea.header}}</h3>
|
2020-12-01 10:06:21 -08:00
|
|
|
<p v-if="idea.description">
|
|
|
|
{{idea.description}}
|
|
|
|
</p>
|
2020-11-29 02:03:01 -08:00
|
|
|
<ul>
|
|
|
|
<li v-for="[exampleFrom, exampleTo] in idea.examples">
|
|
|
|
{{exampleFrom}} → <strong>{{exampleTo}}</strong>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</section>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import { head } from "../src/helpers";
|
|
|
|
|
|
|
|
export default {
|
|
|
|
head() {
|
|
|
|
return head({
|
|
|
|
title: this.$t('pronouns.avoiding.header'),
|
|
|
|
});
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|