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-01-12 06:18:22 -08:00
|
|
|
<template>
|
|
|
|
<section>
|
|
|
|
<h2 class="h4">
|
|
|
|
<Icon v="spell-check"/>
|
|
|
|
<T>pronouns.grammarTable</T>:
|
|
|
|
</h2>
|
|
|
|
|
|
|
|
<div class="table-responsive">
|
|
|
|
<table class="table table-sm">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
2021-01-28 14:41:00 -08:00
|
|
|
<th>Nominatief</th>
|
|
|
|
<th>Accusatief</th>
|
|
|
|
<th>Possessief</th>
|
|
|
|
<th>Verbogen possessief</th>
|
|
|
|
<th>Reflexief</th>
|
2021-01-12 06:18:22 -08:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
2021-01-17 09:57:02 -08:00
|
|
|
<td><Morpheme :pronoun="selectedPronoun" morpheme="nominative" :counter="counter"/></td>
|
|
|
|
<td><Morpheme :pronoun="selectedPronoun" morpheme="accusative" :counter="counter"/></td>
|
|
|
|
<td><Morpheme :pronoun="selectedPronoun" morpheme="pronominal_poss" :counter="counter"/></td>
|
|
|
|
<td><Morpheme :pronoun="selectedPronoun" morpheme="predicative_poss" :counter="counter"/></td>
|
2021-01-12 06:18:22 -08:00
|
|
|
<td><Morpheme :pronoun="selectedPronoun" morpheme="reflexive" :counter="counter"/></td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
props: {
|
|
|
|
selectedPronoun: { required: true },
|
|
|
|
counter: { required: true },
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|