Skip to content
Snippets Groups Projects
Adjective.vue 910 B
<template>
  <table>
    <tr>
      <th rowspan="2">Adjektiv</th><th colspan="3">Entall</th><th>Flertall</th><th colspan="3">Gradbøying</th>
    </tr>
    <tr>
      <th>Hankjønn og hunkjønn</th>
      <th>Intetkjønn</th>
      <th>Bestemt form</th>
      <th></th>
      <th>Komparativ</th>
      <th>Superlativ</th>
      <th>Superlativ, bestemt form</th>
    </tr>
    <tr v-for="(std, index) in standardisations" :key="index">
      <td></td>
      <td>{{std.inflection[0].word_form}}</td>
      <td>{{std.inflection[3].word_form}}</td>
      <td>{{std.inflection[2].word_form}}</td>
      <td>{{std.inflection[1].word_form}}</td>
      <td>{{std.inflection[4].word_form}}</td>
      <td>{{std.inflection[5].word_form}}</td>
      <td>{{std.inflection[6].word_form}}</td>
    </tr>
  </table>
</template>

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