Skip to content
Snippets Groups Projects
Pronoun.vue 409 B
Newer Older
<template>
  <table>
    <tr>
      <th>Pronomen</th><th>Subjektsform</th><th>Objektsform</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>
    </tr>
  </table>
</template>

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