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

68 lines
3.3 KiB
Vue
Raw Normal View History

2021-11-16 08:21:03 -08:00
<template>
<section>
<h2 class="h4">
<Icon v="spell-check"/>
Odmiana:
</h2>
<div class="table-responsive">
<table class="table table-sm">
<thead>
<tr>
2021-11-20 21:49:23 -08:00
<th>именительный</th>
<th>родительный</th>
<th>дательный</th>
<th>винительный</th>
<th>творительный</th>
<th>предложный</th>
2021-11-16 08:21:03 -08:00
</tr>
</thead>
<tbody>
<tr>
2021-11-20 21:49:23 -08:00
<td><Morpheme :pronoun="selectedPronoun" morpheme="nominative" :counter="counter"/></td>
2021-11-20 21:52:07 -08:00
<td><Morpheme :pronoun="selectedPronoun" morpheme="genitive" :counter="counter"/></td> / <td><Morpheme :pronoun="selectedPronoun" morpheme="genitive_with_preposition" :counter="counter"/>
2021-11-20 21:49:23 -08:00
<td><Morpheme :pronoun="selectedPronoun" morpheme="dative" :counter="counter"/></td>
<td><Morpheme :pronoun="selectedPronoun" morpheme="accusative" :counter="counter"/></td>
2021-11-20 21:52:07 -08:00
<td><Morpheme :pronoun="selectedPronoun" morpheme="instrumental" :counter="counter"/></td> / <td><Morpheme :pronoun="selectedPronoun" morpheme="instrumental_with_preposition" :counter="counter"/></td>
2021-11-20 21:49:23 -08:00
<td><Morpheme :pronoun="selectedPronoun" morpheme="prepositional" :counter="counter"/></td>
2021-11-16 08:21:03 -08:00
</tr>
</tbody>
</table>
</div>
2021-11-20 21:49:23 -08:00
<div class="table-responsive">
<table class="table table-sm">
<thead>
<tr>
2021-11-21 10:07:57 -08:00
<th>Окончание невозвратных глаголов в пр. в.</th>
<th>Окончание возвратных глаголов в пр. в.</th>
<th>Окончание кратких прилагательные</th>
<th>Окончание прилагательные</th>
<th>Притяжательное местоимение</th>
<th>Определительное местоимение</th>
2021-11-20 21:49:23 -08:00
</tr>
</thead>
<tbody>
<tr>
<td><Morpheme :pronoun="selectedPronoun" morpheme="nonreflexive_verb_past" :counter="counter" prepend=""/></td>
<td><Morpheme :pronoun="selectedPronoun" morpheme="reflexive_verb_past" :counter="counter" prepend=""/></td>
<td><Morpheme :pronoun="selectedPronoun" morpheme="short_adjective" :counter="counter" prepend=""/></td>
<td><Morpheme :pronoun="selectedPronoun" morpheme="adjective" :counter="counter" prepend=""/></td>
2021-11-20 21:52:07 -08:00
<td><Morpheme :pronoun="selectedPronoun" morpheme="possessive" :counter="counter"/></td>
<td><Morpheme :pronoun="selectedPronoun" morpheme="definitive" :counter="counter"/></td>
2021-11-16 08:21:03 -08:00
</tr>
</tbody>
</table>
</div>
</section>
</template>
<script>
export default {
props: {
selectedPronoun: { required: true },
counter: { required: true },
}
}
</script>