Skip to content
Snippets Groups Projects
Commit 425d9ed6 authored by Ole Voldsæter's avatar Ole Voldsæter
Browse files

substantiv, verb

parent d7753938
No related branches found
No related tags found
No related merge requests found
......@@ -28,6 +28,10 @@ import ADJ_masc_fem_fem from './inflection/AdjectiveMF_F.vue'
import DET from './inflection/Determinative.vue'
import DET_adj from './inflection/DeterminativeAdj.vue'
import PRON from './inflection/Pronoun.vue'
import NOUN from './inflection/Noun.vue'
import NOUN_reg_fem from './inflection/NounRegFem.vue'
import VERB from './inflection/Verb.vue'
import VERB_sPass from './inflection/VerbSPass.vue'
export default {
name: 'Header',
......@@ -46,7 +50,11 @@ export default {
ADJ_masc_fem_fem,
DET,
DET_adj,
PRON
PRON,
NOUN,
NOUN_reg_fem,
VERB,
VERB_sPass
}
}
</script>
......
<template>
<table>
<tr>
<th rowspan="2">Substantiv</th><th colspan="2">Entall</th><th colspan="2">Flertall</th>
</tr>
<tr>
<th>Ubestemt</th><th>Bestemt</th><th>Ubestemt</th><th>Bestemt</th>
</tr>
<tr v-for="(std, index) in standardisations" :key="index">
<th>{{std.tags[1]}}</th>
<td>{{std.inflection[0].word_form}}</td>
<td>{{std.inflection[1].word_form}}</td>
<td>{{std.inflection[2].word_form}}</td>
<td>{{std.inflection[3].word_form}}</td>
</tr>
</table>
</template>
<script>
export default {
name: "NOUN",
props: {
standardisations: Array
}
}
</script>
<template>
<NOUN :standardisations="standardisations"></NOUN>
</template>
<script>
import NOUN from './Noun.vue'
export default {
name: "NOUN_reg_fem",
props: {
standardisations: Array
},
components: {
NOUN
}
}
</script>
<template>
<table>
<tr>
<th rowspan="2">Verb</th>
<th rowspan="2">Infinitiv</th>
<th rowspan="2">Presens</th>
<th rowspan="2">Preteritum</th>
<th rowspan="2">Presens perfektum</th>
<th rowspan="2">Imperativ</th>
<th colspan="4">Perfektum partisipp</th>
<th rowspan="2">Presens partisipp</th>
</tr>
<tr>
<th>Hankjønn/hunkjønn</th>
<th>Intetkjønn</th>
<th>Bestemt form</th>
<th>Flertall</th>
</tr>
<tr v-for="(std, index) in standardisations" :key="index">
<th></th>
<td>å {{std.inflection[0].word_form + (std.inflection[1].word_form ? '/' + std.inflection[1].word_form : '')}}</td>
<td>{{std.inflection[2].word_form}}</td>
<td>{{std.inflection[5].word_form}}</td>
<td>har {{std.inflection[6].word_form}}</td>
<td>{{std.inflection[13].word_form}}!</td>
<td>{{std.inflection[8].word_form}}</td>
<td>{{std.inflection[7].word_form}}</td>
<td>{{std.inflection[10].word_form}}</td>
<td>{{std.inflection[11].word_form}}</td>
<td>{{std.inflection[12].word_form}}</td>
</tr>
</table>
</template>
<script>
export default {
name: "VERB",
props: {
standardisations: Array
}
}
</script>
<template>
<table>
<tr>
<th>Verb</th>
<th>Infinitiv</th>
<th>Presens</th>
<th>Preteritum</th>
<th>Presens perfektum</th>
</tr>
<tr v-for="(std, index) in standardisations" :key="index">
<td></td>
<td>å {{std.inflection[0].word_form}}</td>
<td>{{std.inflection[1].word_form}}</td>
<td>{{std.inflection[2].word_form}}</td>
<td>{{std.inflection[3].word_form}}</td>
</tr>
</table>
</template>
<script>
export default {
name: "VERB_sPass",
props: {
standardisations: Array
}
}
</script>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment