Skip to content
Snippets Groups Projects
AdjectiveMF_F.vue 988 B
Newer Older
<template>
  <table>
    <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>

<script>
export default {
  name: "ADJ_masc_fem_fem",
  props: {
    standardisations: Array
  }
}
</script>