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

39 lines
1.2 KiB
Vue
Raw Normal View History

2021-08-07 09:39:51 -07:00
<template>
<section>
<h2 class="h4">
<Icon v="spell-check"/>
<T>pronouns.grammarTable</T>:
</h2>
<div class="table-responsive">
<table class="table table-sm">
<thead>
<tr>
2021-08-08 09:08:18 -07:00
<th>Emne</th>
<th>Gjenstand</th>
<th>Possessiv</th>
<th>Refleksiv</th>
2021-08-07 09:39:51 -07:00
</tr>
</thead>
<tbody>
<tr>
<td><Morpheme :pronoun="selectedPronoun" morpheme="pronoun_subject" :counter="counter"/></td>
<td><Morpheme :pronoun="selectedPronoun" morpheme="pronoun_object" :counter="counter"/></td>
<td><Morpheme :pronoun="selectedPronoun" morpheme="possessive_determiner" :counter="counter"/></td>
<td><Morpheme :pronoun="selectedPronoun" morpheme="reflexive" :counter="counter"/></td>
</tr>
</tbody>
</table>
</div>
</section>
</template>
<script>
export default {
props: {
selectedPronoun: { required: true },
counter: { required: true },
}
}
</script>