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
Raw Normal View History

2021-01-05 07:44:47 -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-07-26 11:22:35 -07:00
<th></th>
2021-07-25 18:12:22 -07:00
<th>Nominativ</th>
<th>Dativ</th>
<th>Akkusativ</th>
<th>Genitiv</th>
2021-01-05 07:44:47 -08:00
</tr>
</thead>
<tbody>
<tr>
2021-07-26 11:22:35 -07:00
<th>Pronomen</th>
2021-07-25 18:12:22 -07:00
<td><Morpheme :pronoun="selectedPronoun" morpheme="pronoun_n" :counter="counter"/></td>
2021-07-26 11:22:35 -07:00
<td><Morpheme :pronoun="selectedPronoun" morpheme="pronoun_g" :counter="counter"/></td>
2021-07-25 18:12:22 -07:00
<td><Morpheme :pronoun="selectedPronoun" morpheme="pronoun_d" :counter="counter"/></td>
<td><Morpheme :pronoun="selectedPronoun" morpheme="pronoun_a" :counter="counter"/></td>
2021-07-26 11:22:35 -07:00
</tr>
<tr>
<th>Artikel</th>
2021-07-25 18:12:22 -07:00
<td><Morpheme :pronoun="selectedPronoun" morpheme="article_n" :counter="counter"/></td>
2021-07-26 11:22:35 -07:00
<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>
2021-01-05 07:44:47 -08:00
</tr>
</tbody>
</table>
</div>
</section>
</template>
<script>
export default {
props: {
selectedPronoun: { required: true },
counter: { required: true },
}
}
</script>