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.
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>
|
2020-11-10 15:47:44 -08:00
|
|
|
<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: {
|
2020-11-10 15:47:44 -08:00
|
|
|
selectedPronoun: { required: true },
|
2020-09-29 06:36:49 -07:00
|
|
|
counter: { required: true },
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|