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.
2021-04-08 08:26:35 -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>
|
2021-04-08 08:26:35 -07:00
|
|
|
</h2>
|
|
|
|
|
|
|
|
<div class="table-responsive">
|
|
|
|
<table class="table table-sm">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
2021-08-26 07:09:21 -07:00
|
|
|
<th>Sujet</th>
|
|
|
|
<th>Objet direct</th>
|
|
|
|
<th>Objet indirect</th>
|
|
|
|
<th>Possessif</th>
|
2021-04-08 08:26:35 -07:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td><Morpheme :pronoun="selectedPronoun" morpheme="pronoun_subject" :counter="counter"/></td>
|
|
|
|
<td><Morpheme :pronoun="selectedPronoun" morpheme="pronoun_object" :counter="counter"/></td>
|
2021-08-26 07:09:21 -07:00
|
|
|
<td><Morpheme :pronoun="selectedPronoun" morpheme="pronoun_disjunctive" :counter="counter"/></td>
|
|
|
|
<td><Morpheme :pronoun="selectedPronoun" morpheme="pronoun_possessive" :counter="counter"/></td>
|
2021-04-08 08:26:35 -07:00
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
props: {
|
|
|
|
selectedPronoun: { required: true },
|
|
|
|
counter: { required: true },
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|