<template>
  <table>
    <tr>
      <th>Adjektiv, adverbtype</th><th>Positiv</th><th>Komparativ</th><th>Superlativ</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>
    </tr>
  </table>
</template>

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

<style scoped>
   table {
    border-collapse: collapse;
    margin: 10px;
  }

   td,  th {
    border: solid;
    border-width: 1px;
    margin: 0px 0px 0px 0px;
    padding: 3px;
  }
</style>