(eo)(pronouns) empty <GrammarTable>

This commit is contained in:
Valentyne Stigloher 2024-10-04 21:44:47 +02:00
parent e2c6f7a944
commit 40b0242771
5 changed files with 5 additions and 75 deletions

View File

@ -1,11 +1 @@
<template>
</template>
<script>
export default {
props: {
selectedPronoun: { required: true },
counter: { required: true },
},
};
</script>
<template></template>

View File

@ -1,40 +1 @@
<template>
<section>
<h2 class="h4">
<Icon v="spell-check" />
<T>pronouns.grammarTable</T><T>quotation.colon</T>
</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><MorphemeWithPronunciation :pronoun="selectedPronoun" morpheme="pronoun_subject" :counter="counter" /></td>
<td><MorphemeWithPronunciation :pronoun="selectedPronoun" morpheme="pronoun_object" :counter="counter" /></td>
<td><MorphemeWithPronunciation :pronoun="selectedPronoun" morpheme="possessive_determiner" :counter="counter" /></td>
<td><MorphemeWithPronunciation :pronoun="selectedPronoun" morpheme="possessive_pronoun" :counter="counter" /></td>
<td><MorphemeWithPronunciation :pronoun="selectedPronoun" morpheme="reflexive" :counter="counter" /></td>
</tr>
</tbody>
</table>
</div>
</section>
</template>
<script>
export default {
props: {
selectedPronoun: { required: true },
counter: { required: true },
},
};
</script>
<template></template>

View File

@ -1,11 +1 @@
<template>
</template>
<script>
export default {
props: {
selectedPronoun: { required: true },
counter: { required: true },
},
};
</script>
<template></template>

View File

@ -1,2 +1 @@
<template>
</template>
<template></template>

View File

@ -1,11 +1 @@
<template>
</template>
<script>
export default {
props: {
selectedPronoun: { required: true },
counter: { required: true },
},
};
</script>
<template></template>