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

2021-02-02 03:09:58 -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-02-06 07:16:58 -08:00
<th>Именительный</th>
<th>Родительный</th>
<th>Дательный</th>
<th>Винителный</th>
<th>Творителный</th>
<th>Предложный</th>
2021-02-02 03:09:58 -08:00
</tr>
</thead>
<tbody>
<tr>
<td><Morpheme :pronoun="selectedPronoun" morpheme="pronoun_n" :counter="counter"/></td>
2021-02-06 07:16:58 -08:00
<td><Morpheme :pronoun="selectedPronoun" morpheme="pronoun_g" :counter="counter"/></td>
2021-02-02 03:09:58 -08:00
<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>
2021-02-06 07:16:58 -08:00
<th>1 ос.</th>
<th>2 ос..</th>
<th>3 ос.</th>
2021-02-02 03:09:58 -08:00
<th>Przymiotniki</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<Morpheme :pronoun="selectedPronoun" morpheme="verb_middle_inter" :counter="counter"
prepend=""
2021-02-06 07:16:58 -08:00
:append="selectedPronoun.isPlural(counter) ? '' : ''"
:appendPr="selectedPronoun.isPlural(counter) ? '' : ''"
2021-02-02 03:09:58 -08:00
/>
</td>
<td>
<Morpheme :pronoun="selectedPronoun" morpheme="verb_middle_inter" :counter="counter"
prepend=""
2021-02-06 07:16:58 -08:00
:append="selectedPronoun.isPlural(counter) ? '' : ''"
:appendPr="selectedPronoun.isPlural(counter) ? '' : ''"
2021-02-02 03:09:58 -08:00
/>
</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>