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 Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<section>
<h2 class="h4">
<Icon v="spell-check"/>
Грамматика:
</h2>
<div class="table-responsive">
<table class="table table-sm">
<thead>
<tr>
<th>именительный</th>
<th>родительный</th>
<th>дательный</th>
<th>винительный</th>
<th>творительный</th>
<th>предложный</th>
</tr>
</thead>
<tbody>
<tr>
<td><Morpheme :pronoun="selectedPronoun" morpheme="nominative" :counter="counter"/></td>
<td><Morpheme :pronoun="selectedPronoun" morpheme="genitive" :counter="counter"/> / <Morpheme :pronoun="selectedPronoun" morpheme="genitive_with_preposition" :counter="counter"/>
<td><Morpheme :pronoun="selectedPronoun" morpheme="dative" :counter="counter"/></td>
<td><Morpheme :pronoun="selectedPronoun" morpheme="accusative" :counter="counter"/></td>
<td><Morpheme :pronoun="selectedPronoun" morpheme="instrumental" :counter="counter"/> / <Morpheme :pronoun="selectedPronoun" morpheme="instrumental_with_preposition" :counter="counter"/></td>
<td><Morpheme :pronoun="selectedPronoun" morpheme="prepositional" :counter="counter"/></td>
</tr>
</tbody>
</table>
</div>
<div class="table-responsive">
<table class="table table-sm">
<thead>
<tr>
<th>Окончание невозвратных глаголов в пр. в.</th>
<th>Окончание возвратных глаголов в пр. в.</th>
<th>Окончание кратких прилагательных</th>
<th>Окончание прилагательных</th>
<th>Притяжательное местоимение</th>
<th>Определительное местоимение</th>
</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>
<td><Morpheme :pronoun="selectedPronoun" morpheme="possessive" :counter="counter"/></td>
<td><Morpheme :pronoun="selectedPronoun" morpheme="definitive" :counter="counter"/></td>
</tr>
</tbody>
</table>
</div>
</section>
</template>
<script>
export default {
props: {
selectedPronoun: { required: true },
counter: { required: true },
}
}
</script>