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-09-29 09:34:47 -07:00
|
|
|
<template>
|
|
|
|
<div class="container">
|
|
|
|
<h2>
|
|
|
|
<Icon v="globe-americas"/>
|
|
|
|
<T>english.headerLonger</T>
|
|
|
|
</h2>
|
|
|
|
|
|
|
|
<section>
|
|
|
|
<T>english.intro</T>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<Separator icon="list"/>
|
|
|
|
|
2020-11-15 00:02:28 -08:00
|
|
|
<section v-for="pronounGroup in config.english.pronounGroups">
|
2020-11-16 11:43:44 -08:00
|
|
|
<h3>
|
2020-11-15 00:02:28 -08:00
|
|
|
{{pronounGroup.name}}
|
|
|
|
</h3>
|
|
|
|
<p v-for="p in pronounGroup.description">
|
|
|
|
<LinkedText :text="p"/>
|
|
|
|
</p>
|
|
|
|
<EnglishTable v-if="pronounGroup.table" :t="pronounGroup.table"/>
|
|
|
|
</section>
|
2020-09-29 09:34:47 -07:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2020-11-10 15:47:44 -08:00
|
|
|
import EnglishTable from "../data/pronouns/EnglishTable";
|
2020-09-29 09:34:47 -07:00
|
|
|
import { head } from "../src/helpers";
|
|
|
|
|
|
|
|
export default {
|
|
|
|
components: { EnglishTable },
|
|
|
|
head() {
|
|
|
|
return head({
|
2020-09-30 12:59:41 -07:00
|
|
|
title: this.$t('english.headerLonger'),
|
|
|
|
description: this.$t('english.description'),
|
2020-09-29 09:34:47 -07:00
|
|
|
});
|
|
|
|
},
|
|
|
|
}
|
|
|
|
</script>
|