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/en/pronouns/GrammarTables.vue

41 lines
1.3 KiB
Vue
Raw Normal View History

2020-09-29 06:36:49 -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>Subject</th>
<th>Object</th>
<th>Possessive determiner</th>
<th>Possessive pronoun</th>
<th>Reflexive</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{ selectedPronoun.getMorpheme('pronoun_subject', counter) }}</td>
<td>{{ selectedPronoun.getMorpheme('pronoun_object', counter) }}</td>
<td>{{ selectedPronoun.getMorpheme('possessive_determiner', counter) }}</td>
<td>{{ selectedPronoun.getMorpheme('possessive_pronoun', counter) }}</td>
<td>{{ selectedPronoun.getMorpheme('reflexive', counter) }}</td>
2020-09-29 06:36:49 -07:00
</tr>
</tbody>
</table>
</div>
</section>
</template>
<script>
export default {
props: {
selectedPronoun: { required: true },
2020-09-29 06:36:49 -07:00
counter: { required: true },
}
}
</script>