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

76 lines
3.0 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"/>
Odmiana:
</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="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>
<td><Morpheme :pronoun="selectedPronoun" morpheme="pronoun_i" :counter="counter"/></td>
<td><Morpheme :pronoun="selectedPronoun" morpheme="pronoun_l" :counter="counter"/></td>
</tr>
</tbody>
</table>
</div>
<div class="table-responsive">
<table class="table table-sm">
<thead>
<tr>
<th>1 ос.</th>
<th>2 ос..</th>
<th>3 ос.</th>
<th>Przymiotniki</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<Morpheme :pronoun="selectedPronoun" morpheme="verb_middle_inter" :counter="counter"
prepend=""
:append="selectedPronoun.isPlural(counter) ? '' : ''"
:appendPr="selectedPronoun.isPlural(counter) ? '' : ''"
/>
</td>
<td>
<Morpheme :pronoun="selectedPronoun" morpheme="verb_middle_inter" :counter="counter"
prepend=""
:append="selectedPronoun.isPlural(counter) ? '' : ''"
:appendPr="selectedPronoun.isPlural(counter) ? '' : ''"
/>
</td>
<td><Morpheme :pronoun="selectedPronoun" morpheme="verb_end_about" :counter="counter" prepend=""/></td>
<td><Morpheme :pronoun="selectedPronoun" morpheme="adjective_n" :counter="counter" prepend=""/></td>
</tr>
</tbody>
</table>
</div>
</section>
</template>
<script>
export default {
props: {
selectedPronoun: { required: true },
counter: { required: true },
}
}
</script>