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

forenkling, bruker eksisterende template

parent e568bccd
No related branches found
No related tags found
No related merge requests found
<template> <template>
<table> <ADJ_masc_fem :standardisations="standardisations"></ADJ_masc_fem>
<tr>
<th rowspan="2">Adjektiv</th><th colspan="4">Entall</th><th>Flertall</th><th colspan="3">Gradbøying</th>
</tr>
<tr>
<th>Hankjønn/Hokjønn</th>
<th>Hokjønn</th>
<th>Inkjekjønn</th>
<th>Bunden form</th>
<th></th>
<th>Komparativ</th>
<th>Superlativ</th>
<th>Superlativ, bunden form</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>
<td>{{std.inflection[4].word_form}}</td>
<td>{{std.inflection[5].word_form}}</td>
<td>{{std.inflection[6].word_form}}</td>
<td>{{std.inflection[7].word_form}}</td>
</tr>
</table>
</template> </template>
<script> <script>
import ADJ_masc_fem from './AdjectiveMF.vue'
export default { export default {
name: "ADJ_masc_fem_fem", name: "ADJ_masc_fem_fem",
props: { props: {
standardisations: Array standardisations: Array
},
components: {
ADJ_masc_fem
} }
} }
</script> </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