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 06:36:49 -07:00
|
|
|
<template>
|
|
|
|
<section>
|
|
|
|
<h2 class="h4">
|
|
|
|
<Icon v="spell-check"/>
|
2021-12-02 08:18:25 -08:00
|
|
|
<T>pronouns.grammarTable</T><T>quotation.colon</T>
|
2020-09-29 06:36:49 -07:00
|
|
|
</h2>
|
|
|
|
|
|
|
|
<div class="table-responsive">
|
|
|
|
<table class="table table-sm">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Subject</th>
|
|
|
|
<th>Object</th>
|
|
|
|
<th>Possessive determiner</th>
|
|
|
|
<th>Possessive pronoun</th>
|
|
|
|
<th>Reflexive</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
2020-11-28 07:52:48 -08:00
|
|
|
<td><Morpheme :pronoun="selectedPronoun" morpheme="pronoun_subject" :counter="counter"/></td>
|
|
|
|
<td><Morpheme :pronoun="selectedPronoun" morpheme="pronoun_object" :counter="counter"/></td>
|
|
|
|
<td><Morpheme :pronoun="selectedPronoun" morpheme="possessive_determiner" :counter="counter"/></td>
|
|
|
|
<td><Morpheme :pronoun="selectedPronoun" morpheme="possessive_pronoun" :counter="counter"/></td>
|
|
|
|
<td><Morpheme :pronoun="selectedPronoun" morpheme="reflexive" :counter="counter"/></td>
|
2020-09-29 06:36:49 -07:00
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
props: {
|
2020-11-10 15:47:44 -08:00
|
|
|
selectedPronoun: { required: true },
|
2020-09-29 06:36:49 -07:00
|
|
|
counter: { required: true },
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|