2021-11-16 08:21:03 -08:00
|
|
|
|
<template>
|
|
|
|
|
<section>
|
|
|
|
|
<h2 class="h4">
|
|
|
|
|
<Icon v="spell-check"/>
|
2021-11-21 11:50:00 -08:00
|
|
|
|
Словоизменение:
|
2021-11-16 08:21:03 -08:00
|
|
|
|
</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-21 10:10:25 -08:00
|
|
|
|
<td><Morpheme :pronoun="selectedPronoun" morpheme="genitive" :counter="counter"/> / <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-21 10:10:25 -08:00
|
|
|
|
<td><Morpheme :pronoun="selectedPronoun" morpheme="instrumental" :counter="counter"/> / <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>
|
2021-11-21 12:07:13 -08:00
|
|
|
|
<th>Окончание кратких прилагательных</th>
|
|
|
|
|
<th>Окончание прилагательных</th>
|
2021-11-21 10:07:57 -08:00
|
|
|
|
<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>
|