2020-09-28 09:29:13 -07:00
|
|
|
<template>
|
|
|
|
<section>
|
|
|
|
<h2 class="h4">
|
|
|
|
<Icon v="spell-check"/>
|
|
|
|
Odmiana:
|
|
|
|
</h2>
|
|
|
|
|
|
|
|
<div class="table-responsive">
|
|
|
|
<table class="table table-sm">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Mianownik</th>
|
|
|
|
<th>Dopełniacz</th>
|
|
|
|
<th>Celownik</th>
|
|
|
|
<th>Biernik</th>
|
|
|
|
<th>Narzędnik</th>
|
|
|
|
<th>Miejscownik</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
2020-11-10 15:47:44 -08:00
|
|
|
<td>{{ selectedPronoun.getMorpheme('pronoun_n', counter) }}</td>
|
|
|
|
<td>{{ selectedPronoun.getMorpheme('pronoun_g', counter) }} / {{
|
|
|
|
selectedPronoun.getMorpheme('pronoun_g_acc', counter) }}</td>
|
|
|
|
<td>{{ selectedPronoun.getMorpheme('pronoun_d', counter) }}</td>
|
|
|
|
<td>{{ selectedPronoun.getMorpheme('pronoun_a', counter) }}</td>
|
|
|
|
<td>{{ selectedPronoun.getMorpheme('pronoun_i', counter) }}</td>
|
|
|
|
<td>{{ selectedPronoun.getMorpheme('pronoun_l', counter) }}</td>
|
2020-09-28 09:29:13 -07:00
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="table-responsive">
|
|
|
|
<table class="table table-sm">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>1 os.</th>
|
|
|
|
<th>2 os.</th>
|
|
|
|
<th>3 os.</th>
|
|
|
|
<th>Przymiotniki</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
2020-11-10 15:47:44 -08:00
|
|
|
<td>-{{ selectedPronoun.getMorpheme('verb_middle_inter', counter) }}{{selectedPronoun.isPlural(counter) ? 'śmy' : 'm'}}</td>
|
|
|
|
<td>-{{ selectedPronoun.getMorpheme('verb_middle_inter', counter) }}{{selectedPronoun.isPlural(counter) ? 'ście' : 'ś'}}</td>
|
|
|
|
<td>-{{ selectedPronoun.getMorpheme('verb_end_about', counter) }}</td>
|
|
|
|
<td>-{{ selectedPronoun.getMorpheme('adjective_n', counter) }}</td>
|
2020-09-28 09:29:13 -07:00
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
props: {
|
2020-11-10 15:47:44 -08:00
|
|
|
selectedPronoun: { required: true },
|
2020-09-28 09:29:13 -07:00
|
|
|
counter: { required: true },
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|