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

48 lines
1.8 KiB
Vue

<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>
<th></th>
<th>Nominativ</th>
<th>Dativ</th>
<th>Akkusativ</th>
<th>Genitiv</th>
</tr>
</thead>
<tbody>
<tr>
<th>Pronomen</th>
<td><Morpheme :pronoun="selectedPronoun" morpheme="pronoun_n" :counter="counter"/></td>
<td><Morpheme :pronoun="selectedPronoun" morpheme="pronoun_g" :counter="counter"/></td>
<td><Morpheme :pronoun="selectedPronoun" morpheme="pronoun_d" :counter="counter"/></td>
<td><Morpheme :pronoun="selectedPronoun" morpheme="pronoun_a" :counter="counter"/></td>
</tr>
<tr>
<th>Artikel</th>
<td><Morpheme :pronoun="selectedPronoun" morpheme="article_n" :counter="counter"/></td>
<td><Morpheme :pronoun="selectedPronoun" morpheme="article_g" :counter="counter"/></td>
<td><Morpheme :pronoun="selectedPronoun" morpheme="article_d" :counter="counter"/></td>
<td><Morpheme :pronoun="selectedPronoun" morpheme="article_a" :counter="counter"/></td>
</tr>
</tbody>
</table>
</div>
</section>
</template>
<script>
export default {
props: {
selectedPronoun: { required: true },
counter: { required: true },
}
}
</script>