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/locale/fr/pronouns/GrammarTables.vue

39 lines
1.2 KiB
Vue
Raw Normal View History

<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>
</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>
</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>
</tr>
</tbody>
</table>
</div>
</section>
</template>
<script>
export default {
props: {
selectedPronoun: { required: true },
counter: { required: true },
}
}
</script>