41 lines
1.4 KiB
Vue
41 lines
1.4 KiB
Vue
<template>
|
|
<section>
|
|
<h2 class="h4">
|
|
<Icon v="spell-check"/>
|
|
<T>pronouns.grammarTable</T><T>quotation.colon</T>
|
|
</h2>
|
|
|
|
<div class="table-responsive">
|
|
<table class="table table-sm">
|
|
<thead>
|
|
<tr>
|
|
<th>Nominatief</th>
|
|
<th>Accusatief</th>
|
|
<th>Possessief</th>
|
|
<th>Verbogen possessief</th>
|
|
<th>Reflexief</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<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>
|
|
<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>
|